Edges and "triangles" in truncated simplicial sets #
Given a 2-truncated simplicial set X, we introduce two types:
- Given
0-simplicesx₀andx₁, we defineEdge x₀ x₁which is the type of1-simplices with facesx₁andx₀respectively; - Given
0-simplicesx₀,x₁,x₂, edgese₀₁ : Edge x₀ x₁,e₁₂ : Edge x₁ x₂,e₀₂ : Edge x₀ x₂, a structureCompStruct e₀₁ e₁₂ e₀₂which records the data of a2-simplex with facese₁₂,e₀₂ande₀₁respectively. This data will allow to obtain relations in the homotopy category ofX.
In a 2-truncated simplicial set, an edge from a vertex x₀ to x₁ is
a 1-simplex with prescribed 0-dimensional faces.
- edge : X.obj (Opposite.op { obj := SimplexCategory.mk 1, property := ⋯ })
A
1-simplex The source of the edge is
x₀.The target of the edge is
x₁.
Instances For
The edge given by a 1-simplex.
Equations
- SSet.Truncated.Edge.mk' s = { edge := s, src_eq := ⋯, tgt_eq := ⋯ }
Instances For
The constant edge on a 0-simplex.
Equations
- SSet.Truncated.Edge.id x = { edge := X.map (SimplexCategory.Truncated.σ₂ 0 SSet.Truncated.Edge.mk'._proof_2 SSet.Truncated.Edge.mk'._proof_3).op x, src_eq := ⋯, tgt_eq := ⋯ }
Instances For
The image of an edge by a morphism of truncated simplicial sets.
Equations
- e.map f = { edge := f.app (Opposite.op { obj := SimplexCategory.mk 1, property := SSet.Truncated.Edge.mk'._proof_1 }) e.edge, src_eq := ⋯, tgt_eq := ⋯ }
Instances For
Let x₀, x₁, x₂ be 0-simplices of a 2-truncated simplicial set X,
e₀₁ an edge from x₀ to x₁, e₁₂ an edge from x₁ to x₂,
e₀₂ an edge from x₀ to x₂. This is the data of a 2-simplex whose
faces are respectively e₀₂, e₁₂ and e₀₁. Such structures shall provide
relations in the homotopy category of arbitrary (truncated) simplicial sets
(and specialized constructions for quasicategories and Kan complexes.).
- simplex : X.obj (Opposite.op { obj := SimplexCategory.mk 2, property := ⋯ })
A
2-simplex with prescribed1-dimensional faces
Instances For
e : Edge x y is a composition of Edge.id x with e.
Equations
- One or more equations did not get rendered due to their size.
Instances For
e : Edge x y is a composition of e with Edge.id y.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The image of a Edge.CompStruct by a morphism of 2-truncated
simplicial sets.
Equations
- h.map f = { simplex := f.app (Opposite.op { obj := SimplexCategory.mk 2, property := SSet.Truncated.Edge.CompStruct.map._proof_1 }) h.simplex, d₂ := ⋯, d₀ := ⋯, d₁ := ⋯ }