-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(CategoryTheory): Relation between the Grothendieck construction …
…and `AsSmall` (#19539)
- Loading branch information
Showing
4 changed files
with
108 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/- | ||
Copyright (c) 2024 Jakob von Raumer. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Jakob von Raumer | ||
-/ | ||
import Mathlib.CategoryTheory.Category.Cat | ||
import Mathlib.CategoryTheory.Category.ULift | ||
|
||
/-! | ||
# Functorially embedding `Cat` into the category of small categories | ||
There is a canonical functor `asSmallFunctor` between the category of categories of any size and | ||
any larger category of small categories. | ||
## Future Work | ||
Show that `asSmallFunctor` is faithful. | ||
-/ | ||
|
||
universe w v u | ||
|
||
namespace CategoryTheory | ||
|
||
namespace Cat | ||
|
||
/-- Assigning to each category `C` the small category `AsSmall C` induces a functor `Cat ⥤ Cat`. -/ | ||
@[simps] | ||
def asSmallFunctor : Cat.{v, u} ⥤ Cat.{max w v u, max w v u} where | ||
obj C := .of <| AsSmall C | ||
map F := AsSmall.down ⋙ F ⋙ AsSmall.up | ||
|
||
end Cat | ||
|
||
end CategoryTheory |
This file contains 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
This file contains 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