[Merged by Bors] - chore(CategoryTheory): generalize universes for WellPowered#19992
Closed
[Merged by Bors] - chore(CategoryTheory): generalize universes for WellPowered#19992
Conversation
PR summary c0f67bf368Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
11 tasks
20 tasks
mathlib-bors bot
pushed a commit
that referenced
this pull request
Dec 23, 2024
If `C : Type u` and `Category.{v} C`, we generalize `WellPowered C` by introducing an auxiliary universe `w`. The category `C` satisfies `WellPowered.{w} C` now if it is locally small relative to `w` and the type of subobjects of any `X : C` is `w`-small. The previous definition corresponds to the case `w = v`.
It was necessary to introduce a new file `CategoryTheory.Comma.LocallySmall`: it contains various `LocallySmall` instances for categories like `Comma`, `StructuredArrow`, `Over`, etc.
Apart from this, the only "new" result is a `WellPowered.{w} C` instance for abelian categories satisfying `IsGrothendieckAbelian.{w} C`.
This generalization of `WellPowered` is used in #20014.
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.
If
C : Type uandCategory.{v} C, we generalizeWellPowered Cby introducing an auxiliary universew. The categoryCsatisfiesWellPowered.{w} Cnow if it is locally small relative towand the type of subobjects of anyX : Cisw-small. The previous definition corresponds to the casew = v.It was necessary to introduce a new file
CategoryTheory.Comma.LocallySmall: it contains variousLocallySmallinstances for categories likeComma,StructuredArrow,Over, etc.Apart from this, the only "new" result is a
WellPowered.{w} Cinstance for abelian categories satisfyingIsGrothendieckAbelian.{w} C.This generalization of
WellPoweredis used in #20014.