Canonical homomorphism from a pair of monoids #
This file defines the construction of the canonical homomorphism from a pair of monoids.
Given two morphisms of monoids f : M →* P
and g : N →* P
where elements in the images
of the two morphisms commute, we obtain a canonical morphism
MonoidHom.noncommCoprod : M × N →* P
whose composition with inl M N
coincides with f
and whose composition with inr M N
coincides with g
.
There is an analogue MulHom.noncommCoprod
when f
and g
are only MulHom
s.
Main theorems: #
noncommCoprod_comp_inr
andnoncommCoprod_comp_inl
prove that the compositions ofMonoidHom.noncommCoprod f g _
withinl M N
andinr M N
coincide withf
andg
.comp_noncommCoprod
proves that the composition of a morphism of monoidsh
withnoncommCoprod f g _
coincides withnoncommCoprod (h.comp f) (h.comp g)
.
For a product of a family of morphisms of monoids, see MonoidHom.noncommPiCoprod
.
Coproduct of two MulHom
s with the same codomain with Commute
assumption:
f.noncommCoprod g _ (p : M × N) = f p.1 * g p.2
.
(For the commutative case, use MulHom.coprod
)
Instances For
Coproduct of two AddHom
s with the same codomain with AddCommute
assumption:
f.noncommCoprod g _ (p : M × N) = f p.1 + g p.2
.
(For the commutative case, use AddHom.coprod
)
Instances For
Coproduct of two MonoidHom
s with the same codomain,
with a commutation assumption:
f.noncommCoprod g _ (p : M × N) = f p.1 * g p.2
.
(Noncommutative case; in the commutative case, use MonoidHom.coprod
.)
Equations
Instances For
Coproduct of two AddMonoidHom
s with the same codomain,
with a commutation assumption:
f.noncommCoprod g (p : M × N) = f p.1 + g p.2
.
(Noncommutative case; in the commutative case, use AddHom.coprod
.)