English
Naturality of associator for whisker-left operation.
Русский
Естественность ассоциатора для левостороннего whisker.
LaTeX
$$$((X_1 \\wr f_2) \\wr X_3) \\to (\\alpha_{X_1,Y_2,X_3})^{\\mathrm{hom}}$ equals the other side.$$
Lean4
@[reassoc]
theorem associator_naturality {X₁ X₂ X₃ Y₁ Y₂ Y₃ : LocalizedMonoidal L W ε} (f₁ : X₁ ⟶ Y₁) (f₂ : X₂ ⟶ Y₂)
(f₃ : X₃ ⟶ Y₃) : ((f₁ ⊗ₘ f₂) ⊗ₘ f₃) ≫ (α_ Y₁ Y₂ Y₃).hom = (α_ X₁ X₂ X₃).hom ≫ (f₁ ⊗ₘ f₂ ⊗ₘ f₃) :=
by
have h₁ := (((associator L W ε).hom.app Y₁).app Y₂).naturality f₃
have h₂ := NatTrans.congr_app (((associator L W ε).hom.app Y₁).naturality f₂) X₃
have h₃ := NatTrans.congr_app (NatTrans.congr_app ((associator L W ε).hom.naturality f₁) X₂) X₃
simp only [monoidalCategoryStruct, Functor.map_comp, assoc]
dsimp at h₁ h₂ h₃ ⊢
rw [h₁, assoc, reassoc_of% h₂, reassoc_of% h₃]