[Merged by Bors] - refactor(CategoryTheory/SmallObject): generalization of the definitions#20256
Closed
[Merged by Bors] - refactor(CategoryTheory/SmallObject): generalization of the definitions#20256
Conversation
…iterations of functors in two cases
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Junyan Xu <junyanxu.math@gmail.com>
… small-object-8-bis-refactor
Collaborator
Contributor
|
✌️ joelriou can now approve this pull request. To approve and merge a pull request, simply reply with |
Co-authored-by: Markus Himmel <markus@himmel-villmar.de>
Co-authored-by: Markus Himmel <markus@himmel-villmar.de>
Contributor
Author
|
Thanks! bors merge |
mathlib-bors bot
pushed a commit
that referenced
this pull request
Feb 3, 2025
…ns (#20256) The ongoing definition of the iteration of a natural transformation `ε : 𝟭 C ⟶ F` (with `F : C ⥤ C`) is generalized to "successor structures" (which shall become a mathlibism), i.e. in a category `D`, this consists of a zeroth object `X₀`, a successor application `succ : D → D` and, for all `X : D`, a map `toSucc X : X → succ X` (which does not have to be natural: it is not always so in some applications). For such a `Φ : SuccStruct D`, if `J` is a well-ordered type, we define the `J`-th iteration of `Φ`. (In the case `J := ℕ`, this is the colimit of `succ (succ (succ (succ ... X₀)))`.) The iteration of a functor is a particular case of this constructor with `D := C ⥤ C`. As `toSucc` does not have to be natural in `X`, the caveat is that the proofs make extensive use of equalities of objects in `C` and `Arrow C`, while my previous construction used comparison isomorphisms. Nevertheless, the proofs look much more clean now. One of the reasons is that in the inductive construction (file `Iteration.Nonempty`), in the terms of data, we only need to provide a functor, and then all the fields are in `Prop`. (In the downstream API, we shall obviously use isomorphisms instead of equalities...) This PR supersedes #19264. The results are used in #20245 in order to get functorial factorizations in the small object argument. After refactoring my code, I found that this approach had already been used in 2018 by Reid Barton in his pioneering formalization work in Lean 3 towards the model category structure on topological spaces. Co-authored-by: Joël Riou <joel.riou@universite-paris-saclay.fr>
Contributor
|
Pull request successfully merged into master. Build succeeded: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The ongoing definition of the iteration of a natural transformation
ε : 𝟭 C ⟶ F(withF : C ⥤ C) is generalized to "successor structures" (which shall become a mathlibism), i.e. in a categoryD, this consists of a zeroth objectX₀, a successor applicationsucc : D → Dand, for allX : D, a maptoSucc X : X → succ X(which does not have to be natural: it is not always so in some applications). For such aΦ : SuccStruct D, ifJis a well-ordered type, we define theJ-th iteration ofΦ. (In the caseJ := ℕ, this is the colimit ofsucc (succ (succ (succ ... X₀))).)The iteration of a functor is a particular case of this constructor with
D := C ⥤ C.As
toSuccdoes not have to be natural inX, the caveat is that the proofs make extensive use of equalities of objects inCandArrow C, while my previous construction used comparison isomorphisms. Nevertheless, the proofs look much more clean now. One of the reasons is that in the inductive construction (fileIteration.Nonempty), in the terms of data, we only need to provide a functor, and then all the fields are inProp. (In the downstream API, we shall obviously use isomorphisms instead of equalities...)This PR supersedes #19264. The results are used in #20245 in order to get functorial factorizations in the small object argument.
After refactoring my code, I found that this approach had already been used in 2018 by Reid Barton in his pioneering formalization work in Lean 3 towards the model category structure on topological spaces.