Monoidal composition ⊗≫
(composition up to associators) #
We provide f ⊗≫ g
, the monoidalComp
operation,
which automatically inserts associators and unitors as needed
to make the target of f
match the source of g
.
Example #
Suppose we have a braiding morphism R X Y : X ⊗ Y ⟶ Y ⊗ X
in a monoidal category, and that we
want to define the morphism with the type V₁ ⊗ V₂ ⊗ V₃ ⊗ V₄ ⊗ V₅ ⟶ V₁ ⊗ V₃ ⊗ V₂ ⊗ V₄ ⊗ V₅
that
transposes the second and third components by R V₂ V₃
. How to do this? The first guess would be
to use the whiskering operators ◁
and ▷
, and define the morphism as V₁ ◁ R V₂ V₃ ▷ V₄ ▷ V₅
.
However, this morphism has the type V₁ ⊗ ((V₂ ⊗ V₃) ⊗ V₄) ⊗ V₅ ⟶ V₁ ⊗ ((V₃ ⊗ V₂) ⊗ V₄) ⊗ V₅
,
which is not what we need. We should insert suitable associators. The desired associators can,
in principle, be defined by using the primitive three-components associator
α_ X Y Z : (X ⊗ Y) ⊗ Z ≅ X ⊗ (Y ⊗ Z)
as a building block, but writing down actual definitions
are quite tedious, and we usually don't want to see them.
The monoidal composition ⊗≫
is designed to solve such a problem. In this case, we can define the
desired morphism as 𝟙 _ ⊗≫ V₁ ◁ R V₂ V₃ ▷ V₄ ▷ V₅ ⊗≫ 𝟙 _
, where the first and the second 𝟙 _
are completed as 𝟙 (V₁ ⊗ V₂ ⊗ V₃ ⊗ V₄ ⊗ V₅)
and 𝟙 (V₁ ⊗ V₃ ⊗ V₂ ⊗ V₄ ⊗ V₅)
, respectively.
A typeclass carrying a choice of monoidal structural isomorphism between two objects.
Used by the ⊗≫
monoidal composition operator, and the coherence
tactic.
- iso : X ≅ Y
A monoidal structural isomorphism between two objects.
Instances
Notation for identities up to unitors and associators.
Equations
- CategoryTheory.MonoidalCategory.«term⊗𝟙» = Lean.ParserDescr.node `CategoryTheory.MonoidalCategory.«term⊗𝟙» 1024 (Lean.ParserDescr.symbol " ⊗𝟙 ")
Instances For
Construct an isomorphism between two objects in a monoidal category out of unitors and associators.
Equations
- CategoryTheory.monoidalIso X Y = CategoryTheory.MonoidalCoherence.iso
Instances For
Compose two morphisms in a monoidal category, inserting unitors and associators between as necessary.
Equations
- CategoryTheory.monoidalComp f g = CategoryTheory.CategoryStruct.comp f (CategoryTheory.CategoryStruct.comp CategoryTheory.MonoidalCoherence.iso.hom g)
Instances For
Compose two morphisms in a monoidal category, inserting unitors and associators between as necessary.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Compose two isomorphisms in a monoidal category, inserting unitors and associators between as necessary.
Equations
- CategoryTheory.monoidalIsoComp f g = f ≪≫ CategoryTheory.MonoidalCoherence.iso ≪≫ g
Instances For
Compose two isomorphisms in a monoidal category, inserting unitors and associators between as necessary.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- CategoryTheory.MonoidalCoherence.refl X = { iso := CategoryTheory.Iso.refl X }
Equations
- CategoryTheory.MonoidalCoherence.whiskerLeft X Y Z = { iso := CategoryTheory.MonoidalCategory.whiskerLeftIso X CategoryTheory.MonoidalCoherence.iso }
Equations
- CategoryTheory.MonoidalCoherence.whiskerRight X Y Z = { iso := CategoryTheory.MonoidalCategory.whiskerRightIso CategoryTheory.MonoidalCoherence.iso Z }
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- CategoryTheory.MonoidalCoherence.left X Y = { iso := CategoryTheory.MonoidalCategory.leftUnitor X ≪≫ CategoryTheory.MonoidalCoherence.iso }
Equations
- CategoryTheory.MonoidalCoherence.left' X Y = { iso := CategoryTheory.MonoidalCoherence.iso ≪≫ (CategoryTheory.MonoidalCategory.leftUnitor Y).symm }
Equations
- CategoryTheory.MonoidalCoherence.right X Y = { iso := CategoryTheory.MonoidalCategory.rightUnitor X ≪≫ CategoryTheory.MonoidalCoherence.iso }
Equations
- CategoryTheory.MonoidalCoherence.right' X Y = { iso := CategoryTheory.MonoidalCoherence.iso ≪≫ (CategoryTheory.MonoidalCategory.rightUnitor Y).symm }
Equations
- CategoryTheory.MonoidalCoherence.assoc X Y Z W = { iso := CategoryTheory.MonoidalCategory.associator X Y Z ≪≫ CategoryTheory.MonoidalCoherence.iso }
Equations
- CategoryTheory.MonoidalCoherence.assoc' W X Y Z = { iso := CategoryTheory.MonoidalCoherence.iso ≪≫ (CategoryTheory.MonoidalCategory.associator X Y Z).symm }