Enriched ordinary categories #
If V is a monoidal category, a V-enriched category C does not need
to be a category. However, when we have both Category C and EnrichedCategory V C,
we may require that the type of morphisms X ⟶ Y in C identify to
𝟙_ V ⟶ EnrichedCategory.Hom X Y. This data shall be packaged in the
typeclass EnrichedOrdinaryCategory V C.
In particular, if C is a V-enriched category, it is shown that
the "underlying" category ForgetEnrichment V C is equipped with a
EnrichedOrdinaryCategory V C instance.
Simplicial categories are implemented in AlgebraicTopology.SimplicialCategory.Basic
using an abbreviation for EnrichedOrdinaryCategory SSet C.
An enriched ordinary category is a category C that is also enriched
over a category V in such a way that morphisms X ⟶ Y in C identify
to morphisms 𝟙_ V ⟶ (X ⟶[V] Y) in V.
- Hom : C → C → V
- id_comp (X Y : C) : CategoryStruct.comp (MonoidalCategoryStruct.leftUnitor (Hom X Y)).inv (CategoryStruct.comp (MonoidalCategoryStruct.whiskerRight (id X) (Hom X Y)) (comp X X Y)) = CategoryStruct.id (Hom X Y)
- comp_id (X Y : C) : CategoryStruct.comp (MonoidalCategoryStruct.rightUnitor (Hom X Y)).inv (CategoryStruct.comp (MonoidalCategoryStruct.whiskerLeft (Hom X Y) (id Y)) (comp X Y Y)) = CategoryStruct.id (Hom X Y)
- assoc (W X Y Z : C) : CategoryStruct.comp (MonoidalCategoryStruct.associator (Hom W X) (Hom X Y) (Hom Y Z)).inv (CategoryStruct.comp (MonoidalCategoryStruct.whiskerRight (comp W X Y) (Hom Y Z)) (comp W Y Z)) = CategoryStruct.comp (MonoidalCategoryStruct.whiskerLeft (Hom W X) (comp X Y Z)) (comp W X Z)
morphisms
X ⟶ Yin the category identify morphisms𝟙_ V ⟶ (X ⟶[V] Y)inV- homEquiv_comp {X Y Z : C} (f : X ⟶ Y) (g : Y ⟶ Z) : homEquiv (CategoryStruct.comp f g) = CategoryStruct.comp (MonoidalCategoryStruct.leftUnitor (MonoidalCategoryStruct.tensorUnit V)).inv (CategoryStruct.comp (MonoidalCategoryStruct.tensorHom (homEquiv f) (homEquiv g)) (eComp V X Y Z))
Instances
The bijection (X ⟶ Y) ≃ (𝟙_ V ⟶ (X ⟶[V] Y)) given by a
EnrichedOrdinaryCategory instance.
Instances For
The morphism (X' ⟶[V] Y) ⟶ (X ⟶[V] Y) induced by a morphism X ⟶ X'.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Whiskering commutes with the enriched composition.
The morphism (X ⟶[V] Y) ⟶ (X ⟶[V] Y') induced by a morphism Y ⟶ Y'.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Whiskering commutes with the enriched composition.
Given an isomorphism α : Y ≅ Y₁ in C, the enriched composition map
eComp V X Y Z : (X ⟶[V] Y) ⊗ (Y ⟶[V] Z) ⟶ (X ⟶[V] Z) factors through the V
object (X ⟶[V] Y₁) ⊗ (Y₁ ⟶[V] Z) via the map defined by whiskering in the
middle with α.hom and α.inv.
The bifunctor Cᵒᵖ ⥤ C ⥤ V which sends X : Cᵒᵖ and Y : C to X ⟶[V] Y.
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.
enriched coyoneda functor (X ⟶[V] _) : C ⥤ V.
Equations
- CategoryTheory.eCoyoneda V X = (CategoryTheory.eHomFunctor V C).obj (Opposite.op X)