Paths in simplicial sets #
A path in a simplicial set X of length n is a directed path comprised of
n + 1 0-simplices and n 1-simplices, together with identifications between
0-simplices and the sources and targets of the 1-simplices. We define this
construction first for truncated simplicial sets in SSet.Truncated.Path. A
path in a simplicial set X is then defined as a 1-truncated path in the
1-truncation of X.
An n-simplex has a maximal path, the spine of the simplex, which is a path
of length n.
A path of length n in a 1-truncated simplicial set X is a directed path
of n edges.
- vertex : Fin (n + 1) → X.obj (Opposite.op { obj := SimplexCategory.mk 0, property := ⋯ })
A path includes the data of
n + 10-simplices inX. - arrow : Fin n → X.obj (Opposite.op { obj := SimplexCategory.mk 1, property := ⋯ })
A path includes the data of
n1-simplices inX. - arrow_src (i : Fin n) : X.map (SimplexCategory.Truncated.Hom.tr (SimplexCategory.δ 1) ⋯ ⋯).op (self.arrow i) = self.vertex i.castSucc
The source of a 1-simplex in a path is identified with the source vertex.
- arrow_tgt (i : Fin n) : X.map (SimplexCategory.Truncated.Hom.tr (SimplexCategory.δ 0) ⋯ ⋯).op (self.arrow i) = self.vertex i.succ
The target of a 1-simplex in a path is identified with the target vertex.
Instances For
A path includes the data of n + 1 0-simplices in X.
Equations
Instances For
A path includes the data of n 1-simplices in X.
Equations
Instances For
For j + l ≤ m, a path of length m restricts to a path of length l, namely
the subpath spanned by the vertices j ≤ i ≤ j + l and edges j ≤ i < j + l.
Equations
Instances For
The spine of an m-simplex in X is the path of edges of length m
formed by traversing in order through its vertices.
Equations
Instances For
A path includes the data of n + 1 0-simplices in X.
Equations
Instances For
A path includes the data of n 1-simplices in X.
Equations
Instances For
The spine of an n-simplex in X is the path of edges of length n formed
by traversing in order through the vertices of X _⦋n⦌ₙ₊₁.
Equations
Instances For
The spine of the unique non-degenerate n-simplex in Δ[n].
Equations
Instances For
A path of a simplicial set can be lifted to a subcomplex if the vertices and arrows belong to this subcomplex.