leanprover-community / leanprover-community/mathlib4
Tracking issue: definition of simplicial objects by generators and relations.
Nobody has claimed this yet.
- Dominant language
- Lean
- Stars
- 4.1k
- Forks
- 1.7k
- PR merge metrics
- No merged PRs in 30d
Description
This is a tracking issue for my series of PR formalising the fact that the simplex category is equivalent to the category
presented by generators and relations via the simplicial identities.
The proof that I adapt is mostly the one present in Kerodon. The global strategy is the following:
- Define a category
SimplexCategoryGenRelby generators and relations, with generating morphisms representing faces and degeneracies map, and relations the simplicial relations. - Define a functor
toSimplexCategoryout of this category to the usual simplex category: such a functor exists as the simplicial relations hold in the ssimplex category. This functor is essentially surjective (in fact, even bijective on objects). - Show that every morphism in that category admits a decomposition as a composition of degeneracies, followed by a composition of faces. In practice, this means doing some sorting using the simplicial identities.
- Show that compositions of faces can be put in a normal form which is entirely determined by the realisation of the morphism in
SimplexCategory(see Kerodon 04FQ for the precise statement). - Show the same for composition of degeneracies.
- From the previous two points, obtain that for any monomorphism in
SimplexCategory, there is a unique composition of faces inSimplexCategoryGenRelthat lifts it. Same for epimorphisms inSimplexCategoryand composition of degeneracies. - Using the epi-mono factorisation in
SimplexCategory, conclude thattoSimplexCategoryis fully faithful
The formalisation is of course way more technical (since, in the end it involves a lot of sorting...), and so I split the proof over several files and pull requests, they are organized as follows.
- Pull request #21741 introduces the file
AlgebraicTopology/SimplexCategory/GeneratorsRelations/Basic.lean, which definesSimplexCategoryGenRel, records that it satisfies the simplicial identities, and define its canonical functor toSimplexCategory, as well as a few induction principles that will help working with this category. - Pull request #21742 introduces the file
AlgebraicTopology/SimplexCategory/GeneratorsRelations/EpiMono.lean, which inductively defines predicatesP_σandP_δasserting that a morphism inSimplexCategoryGenRelis a composition of degeneracies (resp. faces). I also prove that one can define these predicates either by composition on the left, or on the right (both will be needed). - Pull request #21743 continues the previous PR, and shows that every morphisms admits a decomposition as a
P_σfollowed by aP_δ, essentially showing thatSimplexCategoryGenRelhas epi-mono factorisations. Only existence is needed for the proof thattoSimplexCategoryis an equivalence, so I did not include unicity. - Pull request #21744 introduces the file
AlgebraicTopology/SimplexCategory/GeneratorsRelations/NormalForms.lean. This will be the file where I will prove thatP_σandP_δcan be uniquely represented as some lists of natural numbers satisfying some inequalities. This PR introduce said lists and call them admissible. I also prove a few technical lemmas about those lists that will be used extensively in the later proofs. Finally, the file introduces aListconstruction calledsimplicialInsertwhich describes inserting an element into an admissible list while keeping admissibility. The simplicial insertion of an elementjreflects on morphism either composition on the left byδ i(when the list represents a normal form of aP_δmorphism) or composition on the right byσ j(when the list represents a normal form of aP_σmorphism). - Pull request #21745 carries out this program for
P_σmorphisms. It introduces a constructionstandard_σwhich turns an integermand a listLinto a morphismmk m + L.length ⟶ mk minSimplexCategoryGenRel. The PR also introduce a helper constructionsimplicialEvalσwhich is a bare hand definition of what(toSimplexCategory.map standardσ _).toOrderHomis supposed to be. This helper construction is nicer to work with than the former, and the PR prove they are indeed equal (up to a lift to the naturals). Finally, the PR shows that everyP_σis indeed equal to somestandardσ m Lfor some admissible list, and that this admissible list only depends onsimplicialEvalσ, so that with the previous facts, it only depends on the realisation inSimplexCategoryof the morphism. - Pull request #21746 is the mirror of the previous PR but for
P_δmorphisms, again, it definesstandardδandsimplicialEvalδ, prove how they relate both to simplicial insertion and totoSimplexCategory, and finally prove that any morphism satisfyingP_δis astandardδfor some admissible list that is entirely determined bysimplicialEvalδ. - Pull request #21747 introduces a new file
AlgebraicTopology/SimplexCategory/GeneratorsRelations/Equivalence.leanwhich uses the previous results to establish that the canonical functortoSimplexCategoryis an equivalence. The file first show that every monomorphism inSimplexCategorycan be uniquely lifted alongtoSimplexCategoryto a morphism satisfyingP_δ, then something similar for epimorphisms, and finally, using existence and unicity of epi-mono factorisations inSimplexCategory, the functor is fully faithful, and essential surjectivity is free here, so the functor is an equivalence. - Pull request #21748 provides the API to use this equivalence in the (new) file
AlgebraicTopology/SimplicialObject/GeneratorsRelations.lean, in the form of new constructors for (co)simplicial objects and natural transformations of such. The results in this PR should be the only ones one should use in practice, all of the results in the previous PR being essentially a big black box to obtains the one in this PR.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the remaining files listed in the tracking issue, especially AlgebraicTopology/SimplexCategory/GeneratorsRelations/NormalForms.lean and PRs #21746–#21748, after reviewing the completed foundational PRs #21741–#21745. The work is done when the normal-form, equivalence, and simplicial-object API stages are completed and the canonical functor is established as an equivalence.
Written by the indexing model from the issue text.
Assessment
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 20/100