The bicategory of based categories #
In this file we define the type BasedCategory 𝒮
, and give it the structure of a strict
bicategory. Given a category 𝒮
, we define the type BasedCategory 𝒮
as the type of categories
𝒳
equipped with a functor 𝒳.p : 𝒳 ⥤ 𝒮
.
We also define a type of functors between based categories 𝒳
and 𝒴
, which we call
BasedFunctor 𝒳 𝒴
and denote as 𝒳 ⥤ᵇ 𝒴
. These are defined as functors between the underlying
categories 𝒳.obj
and 𝒴.obj
which commute with the projections to 𝒮
.
Natural transformations between based functors F G : 𝒳 ⥤ᵇ 𝒴
are given by the structure
BasedNatTrans F G
. These are defined as natural transformations α
between the functors
underlying F
and G
such that α.app a
lifts 𝟙 S
whenever 𝒳.p.obj a = S
.
A based category over 𝒮
is a category 𝒳
together with a functor p : 𝒳 ⥤ 𝒮
.
- obj : Type u₂
The type of objects in a
BasedCategory
- category : Category.{v₂, u₂} self.obj
The underlying category of a
BasedCategory
. The functor to the base.
Instances For
Equations
The based category associated to a functor p : 𝒳 ⥤ 𝒮
.
Equations
Instances For
A functor between based categories is a functor between the underlying categories that commutes with the projections.
- map_comp {X Y Z : 𝒳.obj} (f : X ⟶ Y) (g : Y ⟶ Z) : self.map (CategoryStruct.comp f g) = CategoryStruct.comp (self.map f) (self.map g)
Instances For
The identity based functor.
Equations
Instances For
Notation for the identity functor on a based category.
Equations
Instances For
The composition of two based functors.
Equations
Instances For
Notation for composition of based functors.
Equations
Instances For
For a based functor F : 𝒳 ⟶ 𝒴
, then whenever an arrow φ
in 𝒳
lifts some f
in 𝒮
,
then F(φ)
also lifts f
.
For a based functor F : 𝒳 ⟶ 𝒴
, and an arrow φ
in 𝒳
, then φ
lifts an arrow f
in 𝒮
if F(φ)
does.
A BasedNatTrans
between two BasedFunctor
s is a natural transformation α
between the
underlying functors, such that for all a : 𝒳
, α.app a
lifts 𝟙 S
whenever 𝒳.p.obj a = S
.
- naturality ⦃X Y : 𝒳.obj⦄ (f : X ⟶ Y) : CategoryStruct.comp (F.map f) (self.app Y) = CategoryStruct.comp (self.app X) (G.map f)
Instances For
The identity natural transformation is a BasedNatTrans
.
Equations
Instances For
Composition of BasedNatTrans
, given by composition of the underlying natural
transformations.
Equations
Instances For
Equations
The forgetful functor from the category of based functors 𝒳 ⥤ᵇ 𝒴
to the category of
functors of underlying categories, 𝒳.obj ⥤ 𝒴.obj
.
Equations
Instances For
The identity natural transformation is a based natural isomorphism.
Equations
Instances For
The inverse of a based natural transformation whose underlying natural transformation is an isomorphism.
Equations
Instances For
Left-whiskering in the bicategory BasedCategory
is given by whiskering the underlying functors
and natural transformations.
Equations
Instances For
Right-whiskering in the bicategory BasedCategory
is given by whiskering the underlying
functors and natural transformations.
Equations
Instances For
The category of based categories.
Equations
The bicategory of based categories.
Equations
The bicategory structure on BasedCategory.{v₂, u₂} 𝒮
is strict.