Pairs of simplicial sets #
In this file, we define the category SSetPair of pairs of simplicial
sets, which consist of monomorphisms i : X ⟶ Y of simplicial sets.
@[reducible, inline]
abbrev
SSetPair.homMk
{X Y : SSetPair}
(left : X.left ⟶ Y.left)
(right : X.right ⟶ Y.right)
(w : CategoryTheory.CategoryStruct.comp left Y.hom = CategoryTheory.CategoryStruct.comp X.hom right := by cat_disch)
:
Constructor for morphisms in SSetPair.
Equations
- SSetPair.homMk left right w = CategoryTheory.MorphismProperty.Arrow.Hom.mk (CategoryTheory.Arrow.homMk left right w) ⋯ ⋯
Instances For
@[reducible, inline]
Given a subcomplex A of a simplical set X, this is the pair in SSetPair
corresponding to the inclusion A.ι : (A : SSet) ⟶ X.
Equations
- A.pair = SSetPair.of A.ι
Instances For
@[simp]
theorem
SSet.Subcomplex.toPairFunctor_map
(X : SSet)
{X✝ Y✝ : X.Subcomplex}
(f : X✝ ⟶ Y✝)
:
(toPairFunctor X).map f = SSetPair.homMk (homOfLE ⋯) (CategoryTheory.CategoryStruct.id X✝.pair.right) ⋯
@[simp]
@[simp]
theorem
SSet.toPairFunctor_map
{X✝ Y✝ : SSet}
(f : X✝ ⟶ Y✝)
:
toPairFunctor.map f = SSetPair.homMk (Subcomplex.lift (CategoryTheory.CategoryStruct.comp ⊥.ι f) ⋯) f ⋯