The Grothendieck construction #
Given a functor F : C ⥤ Cat, the objects of Grothendieck F
consist of dependent pairs (b, f), where b : C and f : F.obj c,
and a morphism (b, f) ⟶ (b', f') is a pair β : b ⟶ b' in C, and
φ : (F.map β).obj f ⟶ f'
Categories such as PresheafedSpace are in fact examples of this construction,
and it may be interesting to try to generalize some of the development there.
Implementation notes #
Really we should treat Cat as a 2-category, and allow F to be a 2-functor.
There is also a closely related construction starting with G : Cᵒᵖ ⥤ Cat,
where morphisms consists again of β : b ⟶ b' and φ : f ⟶ (F.map (op β)).obj f'.
References #
See also CategoryTheory.Functor.Elements for the category of elements of functor F : C ⥤ Type.
- https://stacks.math.columbia.edu/tag/02XV
- https://ncatlab.org/nlab/show/Grothendieck+construction
The Grothendieck construction (often written as ∫ F in mathematics) for a functor F : C ⥤ Cat
gives a category whose
- objects
Xconsist ofX.base : CandX.fiber : F.obj base - morphisms
f : X ⟶ Yconsist ofbase : X.base ⟶ Y.baseandf.fiber : (F.map base).obj X.fiber ⟶ Y.fiber
- base : C
The underlying object in
C - fiber : ↑(F.obj self.base)
The object in the fiber of the base object.
Instances For
A morphism in the Grothendieck category F : C ⥤ Cat consists of
base : X.base ⟶ Y.base and f.fiber : (F.map base).obj X.fiber ⟶ Y.fiber.
- base : X.base ⟶ Y.base
The morphism between base objects.
- fiber : (F.map self.base).obj X.fiber ⟶ Y.fiber
The morphism from the pushforward to the source fiber object to the target fiber object.
Instances For
The identity morphism in the Grothendieck category.
Equations
- CategoryTheory.Grothendieck.id X = { base := CategoryTheory.CategoryStruct.id X.base, fiber := CategoryTheory.eqToHom ⋯ }
Instances For
Equations
- CategoryTheory.Grothendieck.instInhabitedHom X = { default := CategoryTheory.Grothendieck.id X }
Composition of morphisms in the Grothendieck category.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- CategoryTheory.Grothendieck.instCategoryGrothendieck = CategoryTheory.Category.mk ⋯ ⋯ ⋯
The forgetful functor from Grothendieck F to the source category.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Auxiliary definition for grothendieck_Type_to_Cat, to speed up elaboration.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Auxiliary definition for grothendieck_Type_to_Cat, to speed up elaboration.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The Grothendieck construction applied to a functor to Type
(thought of as a functor to Cat by realising a type as a discrete category)
is the same as the 'category of elements' construction.
Equations
- One or more equations did not get rendered due to their size.