Morphisms to ⦋1⦌ #
We define a bijective map SimplexCategory.toMk₁ : Fin (n + 2) → ⦋n⦌ ⟶ ⦋1⦌. This is used in the file Mathlib.AlgebraicTopology.SimplicialSet.StdSimplexOnein the study of simplices in the simplicial setΔ[1]`.
Given i : Fin (n + 2), this is the morphism ⦋n⦌ ⟶ ⦋1⦌ in the simplex
category which corresponds to the monotone map Fin (n + 1) → Fin 2 which
takes i times the value 0.
Equations
- SimplexCategory.toMk₁ i = SimplexCategory.Hom.mk { toFun := fun (j : Fin ((SimplexCategory.mk n).len + 1)) => if j.castSucc < i then 0 else 1, monotone' := ⋯ }
Instances For
@[simp]