Disjoint union of categories #
We define the category structure on a sigma-type (disjoint union) of categories.
The type of morphisms of a disjoint union of categories: for X : C i
and Y : C j
, a morphism
(i, X) ⟶ (j, Y)
if i = j
is just a morphism X ⟶ Y
, and if i ≠ j
there are no such morphisms.
- mk {I : Type w₁} {C : I → Type u₁} [(i : I) → Category.{v₁, u₁} (C i)] {i : I} {X Y : C i} : (X ⟶ Y) → SigmaHom ⟨i, X⟩ ⟨i, Y⟩
Instances For
The identity morphism on an object.
Equations
Instances For
Equations
Composition of sigma homomorphisms.
Equations
Instances For
Equations
Equations
The inclusion functor into the disjoint union of categories.
Equations
Instances For
To build a natural transformation over the sigma category, it suffices to specify it restricted to each subcategory.
Equations
Instances For
(Implementation). An auxiliary definition to build the functor desc
.
Equations
Instances For
Given a collection of functors F i : C i ⥤ D
, we can produce a functor (Σ i, C i) ⥤ D
.
The produced functor desc F
satisfies: incl i ⋙ desc F ≅ F i
, i.e. restricted to just the
subcategory C i
, desc F
agrees with F i
, and it is unique (up to natural isomorphism) with
this property.
This witnesses that the sigma-type is the coproduct in Cat.
Equations
Instances For
This shows that when desc F
is restricted to just the subcategory C i
, desc F
agrees with
F i
.
Equations
Instances For
If q
when restricted to each subcategory C i
agrees with F i
, then q
is isomorphic to
desc F
.
Equations
Instances For
If q₁
and q₂
when restricted to each subcategory C i
agree, then q₁
and q₂
are isomorphic.
Equations
Instances For
A function J → I
induces a functor Σ j, C (g j) ⥤ Σ i, C i
.
Equations
Instances For
The functor Sigma.map
applied to the identity function is just the identity functor.
Equations
Instances For
The functor Sigma.map
applied to a composition is a composition of functors.
Equations
Instances For
Assemble an I
-indexed family of functors into a functor between the sigma types.
Equations
Instances For
Assemble an I
-indexed family of natural transformations into a single natural transformation.