Basic properties of the simplex category #
In Mathlib.AlgebraicTopology.SimplexCategory.Defs
, we define the simplex
category with objects ℕ
and morphisms n ⟶ m
the monotone maps from
Fin (n + 1)
to Fin (m + 1)
.
In this file, we define the generating maps for the simplex category, show that
this category is equivalent to NonemptyFinLinOrd
, and establish basic
properties of its epimorphisms and monomorphisms.
The constant morphism from ⦋0⦌.
Equations
Instances For
Make a morphism ⦋n⦌ ⟶ ⦋m⦌
from a monotone map between fin's.
This is useful for constructing morphisms between ⦋n⦌
directly
without identifying n
with ⦋n⦌.len
.
Equations
Instances For
The morphism ⦋1⦌ ⟶ ⦋n⦌
that picks out a specified h : i ≤ j
in Fin (n+1)
.
Equations
- SimplexCategory.mkOfLe i j h = SimplexCategory.mkHom { toFun := fun (x : Fin (1 + 1)) => match x with | 0 => i | 1 => j, monotone' := ⋯ }
Instances For
The morphism ⦋1⦌ ⟶ ⦋n⦌
that picks out the "diagonal composite" edge
Equations
- SimplexCategory.diag n = SimplexCategory.mkOfLe 0 ↑n ⋯
Instances For
The morphism ⦋1⦌ ⟶ ⦋n⦌
that picks out the edge spanning the interval from j
to j + l
.
Equations
- SimplexCategory.intervalEdge j l hjl = SimplexCategory.mkOfLe ⟨j, ⋯⟩ ⟨j + l, ⋯⟩ ⋯
Instances For
The morphism ⦋1⦌ ⟶ ⦋n⦌
that picks out the arrow i ⟶ i+1
in Fin (n+1)
.
Equations
- SimplexCategory.mkOfSucc i = SimplexCategory.mkHom { toFun := fun (x : Fin (1 + 1)) => match x with | 0 => i.castSucc | 1 => i.succ, monotone' := ⋯ }
Instances For
The "inert" morphism associated to a subinterval j ≤ i ≤ j + l
of Fin (n + 1)
.
Equations
- SimplexCategory.subinterval j l hjl = SimplexCategory.mkHom { toFun := fun (i : Fin (l + 1)) => ⟨↑i + j, ⋯⟩, monotone' := ⋯ }
Instances For
Generating maps for the simplex category #
TODO: prove that the simplex category is equivalent to one given by the following generators and relations.
The i
-th face map from ⦋n⦌
to ⦋n+1⦌
Equations
Instances For
The i
-th degeneracy map from ⦋n+1⦌
to ⦋n⦌
Equations
- SimplexCategory.σ i = SimplexCategory.mkHom { toFun := i.predAbove, monotone' := ⋯ }
Instances For
The generic case of the first simplicial identity
The special case of the first simplicial identity
The first part of the third simplicial identity
The second part of the third simplicial identity
The fifth simplicial identity
If f : ⦋m⦌ ⟶ ⦋n+1⦌
is a morphism and j
is not in the range of f
,
then factor_δ f j
is a morphism ⦋m⦌ ⟶ ⦋n⦌
such that
factor_δ f j ≫ δ j = f
(as witnessed by factor_δ_spec
).
Equations
Instances For
The functor that exhibits SimplexCategory
as skeleton
of NonemptyFinLinOrd
Equations
- One or more equations did not get rendered due to their size.
Instances For
The equivalence that exhibits SimplexCategory
as skeleton
of NonemptyFinLinOrd
Instances For
Equations
- One or more equations did not get rendered due to their size.
Equations
Equations
- x.instOfNatToTypeOrderHomFinHAddNatLenOfNat n = inferInstanceAs (OfNat (Fin (x.len + 1)) n)
A morphism in SimplexCategory
is a monomorphism precisely when it is an injective function
A morphism in SimplexCategory
is an epimorphism if and only if it is a surjective function
A monomorphism in SimplexCategory
must increase lengths
An epimorphism in SimplexCategory
must decrease lengths
An isomorphism in SimplexCategory
induces an OrderIso
.
Equations
- SimplexCategory.orderIsoOfIso e = { toFun := ⇑(SimplexCategory.Hom.toOrderHom e.hom), invFun := ⇑(SimplexCategory.Hom.toOrderHom e.inv), left_inv := ⋯, right_inv := ⋯ }.toOrderIso ⋯ ⋯
Instances For
This functor SimplexCategory ⥤ Cat
sends ⦋n⦌
(for n : ℕ
)
to the category attached to the ordered set {0, 1, ..., n}
Equations
- One or more equations did not get rendered due to their size.