Construction of projections for the Dold-Kan correspondence #
In this file, we construct endomorphisms P q : K[X] ⟶ K[X]
for all
q : ℕ
. We study how they behave with respect to face maps with the lemmas
HigherFacesVanish.of_P
, HigherFacesVanish.comp_P_eq_self
and
comp_P_eq_self_iff
.
Then, we show that they are projections (see P_f_idem
and P_idem
). They are natural transformations (see natTransP
and P_f_naturality
) and are compatible with the application
of additive functors (see map_P
).
By passing to the limit, these endomorphisms P q
shall be used in PInfty.lean
in order to define PInfty : K[X] ⟶ K[X]
.
(See Equivalence.lean
for the general strategy of proof of the Dold-Kan equivalence.)
This is the inductive definition of the projections P q : K[X] ⟶ K[X]
,
with P 0 := 𝟙 _
and P (q+1) := P q ≫ (𝟙 _ + Hσ q)
.
Equations
- One or more equations did not get rendered due to their size.
- AlgebraicTopology.DoldKan.P 0 = CategoryTheory.CategoryStruct.id (AlgebraicTopology.AlternatingFaceMapComplex.obj X)
Instances For
All the P q
coincide with 𝟙 _
in degree 0.
Q q
is the complement projection associated to P q
Equations
Instances For
All the Q q
coincide with 0
in degree 0.
This lemma expresses the vanishing of
(P q).f (n+1) ≫ X.δ k : X _[n+1] ⟶ X _[n]
when k≠0
and k≥n-q+2
For each q
, P q
is a natural transformation.
Equations
- AlgebraicTopology.DoldKan.natTransP q = { app := fun (x : CategoryTheory.SimplicialObject C) => AlgebraicTopology.DoldKan.P q, naturality := ⋯ }
Instances For
For each q
, Q q
is a natural transformation.
Equations
- AlgebraicTopology.DoldKan.natTransQ q = { app := fun (x : CategoryTheory.SimplicialObject C) => AlgebraicTopology.DoldKan.Q q, naturality := ⋯ }