Category of categories #
This file contains the definition of the category Cat
of all categories.
In this category objects are categories and
morphisms are functors between these categories.
Implementation notes #
Though Cat
is not a concrete category, we use bundled
to define
its carrier type.
Category of categories.
Instances For
Equations
- CategoryTheory.Cat.instInhabitedCat = { default := { α := Type u, str := CategoryTheory.types } }
Equations
- CategoryTheory.Cat.instCoeSortCatType = { coe := CategoryTheory.Bundled.α }
Equations
- CategoryTheory.Cat.str C = C.str
Bicategory structure on Cat
Equations
- One or more equations did not get rendered due to their size.
Cat
is a strict bicategory.
Equations
Category structure on Cat
@[simp]
theorem
CategoryTheory.Cat.id_map
{C : CategoryTheory.Cat}
{X : ↑C}
{Y : ↑C}
(f : X ⟶ Y)
:
(CategoryTheory.CategoryStruct.id C).map f = f
@[simp]
theorem
CategoryTheory.Cat.comp_obj
{C : CategoryTheory.Cat}
{D : CategoryTheory.Cat}
{E : CategoryTheory.Cat}
(F : C ⟶ D)
(G : D ⟶ E)
(X : ↑C)
:
(CategoryTheory.CategoryStruct.comp F G).obj X = G.obj (F.obj X)
@[simp]
theorem
CategoryTheory.Cat.comp_map
{C : CategoryTheory.Cat}
{D : CategoryTheory.Cat}
{E : CategoryTheory.Cat}
(F : C ⟶ D)
(G : D ⟶ E)
{X : ↑C}
{Y : ↑C}
(f : X ⟶ Y)
:
(CategoryTheory.CategoryStruct.comp F G).map f = G.map (F.map f)
Functor that gets the set of objects of a category. It is not
called forget
, because it is not a faithful functor.
Equations
- One or more equations did not get rendered due to their size.
Instances For
def
CategoryTheory.Cat.equivOfIso
{C : CategoryTheory.Cat}
{D : CategoryTheory.Cat}
(γ : C ≅ D)
:
↑C ≌ ↑D
Any isomorphism in Cat
induces an equivalence of the underlying categories.
Equations
- CategoryTheory.Cat.equivOfIso γ = { functor := γ.hom, inverse := γ.inv, unitIso := CategoryTheory.eqToIso ⋯, counitIso := CategoryTheory.eqToIso ⋯, functor_unitIso_comp := ⋯ }
Instances For
@[simp]
theorem
CategoryTheory.typeToCat_map
{X : Type u}
{Y : Type u}
(f : X ⟶ Y)
:
CategoryTheory.typeToCat.map f = id (CategoryTheory.Discrete.functor (CategoryTheory.Discrete.mk ∘ f))
@[simp]
Embedding Type
into Cat
as discrete categories.
This ought to be modelled as a 2-functor!
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.