The wild category of pointed types

Content created by Fredrik Bakke.

Created on 2024-09-06.
Last modified on 2024-09-06.

{-# OPTIONS --guardedness #-}

module structured-types.wild-category-of-pointed-types where
Imports
open import foundation.action-on-identifications-functions
open import foundation.dependent-pair-types
open import foundation.homotopies
open import foundation.identity-types
open import foundation.universe-levels
open import foundation.whiskering-identifications-concatenation

open import structured-types.globular-types
open import structured-types.large-globular-types
open import structured-types.large-reflexive-globular-types
open import structured-types.large-transitive-globular-types
open import structured-types.pointed-2-homotopies
open import structured-types.pointed-dependent-functions
open import structured-types.pointed-families-of-types
open import structured-types.pointed-homotopies
open import structured-types.pointed-maps
open import structured-types.pointed-types
open import structured-types.reflexive-globular-types
open import structured-types.transitive-globular-types
open import structured-types.uniform-pointed-homotopies

open import wild-category-theory.noncoherent-large-wild-higher-precategories
open import wild-category-theory.noncoherent-wild-higher-precategories

Idea

The wild category of pointed types consists of pointed types, pointed functions, and pointed homotopies.

We give two equivalent definitions: the first uses uniform pointed homotopies, giving a uniform definition for all higher cells. However, uniform pointed homotopies are not as workable directly as pointed homotopies, although the types are equivalent. Therefore we give a second, nonuniform definition of the wild category of pointed types where the 2-cells are pointed homotopies, the 3-cells are pointed 2-homotopies and the higher cells are identities.

Definitions

The uniform definition of the wild category of pointed types

The uniform globular structure on dependent pointed function types

uniform-globular-structure-pointed-Π :
  {l1 l2 : Level} {A : Pointed-Type l1} {B : Pointed-Fam l2 A} 
  globular-structure (l1  l2) (pointed-Π A B)
uniform-globular-structure-pointed-Π =
  λ where
  .1-cell-globular-structure 
    uniform-pointed-htpy
  .globular-structure-1-cell-globular-structure f g 
    uniform-globular-structure-pointed-Π

is-reflexive-uniform-globular-structure-pointed-Π :
  {l1 l2 : Level} {A : Pointed-Type l1} {B : Pointed-Fam l2 A} 
  is-reflexive-globular-structure
    ( uniform-globular-structure-pointed-Π {A = A} {B})
is-reflexive-uniform-globular-structure-pointed-Π =
  λ where
  .is-reflexive-1-cell-is-reflexive-globular-structure 
    refl-uniform-pointed-htpy
  .is-reflexive-globular-structure-1-cell-is-reflexive-globular-structure f g 
    is-reflexive-uniform-globular-structure-pointed-Π

is-transitive-uniform-globular-structure-pointed-Π :
  {l1 l2 : Level} {A : Pointed-Type l1} {B : Pointed-Fam l2 A} 
  is-transitive-globular-structure
    ( uniform-globular-structure-pointed-Π {A = A} {B})
is-transitive-uniform-globular-structure-pointed-Π =
  λ where
  .comp-1-cell-is-transitive-globular-structure {f} {g} {h} H K 
    concat-uniform-pointed-htpy {f = f} {g} {h} K H
  .is-transitive-globular-structure-1-cell-is-transitive-globular-structure
    H K 
    is-transitive-uniform-globular-structure-pointed-Π

The uniform large globular structure on pointed types

uniform-large-globular-structure-Pointed-Type :
  large-globular-structure (_⊔_) Pointed-Type
uniform-large-globular-structure-Pointed-Type =
  λ where
  .1-cell-large-globular-structure X Y 
    (X →∗ Y)
  .globular-structure-1-cell-large-globular-structure X Y 
    uniform-globular-structure-pointed-Π

is-reflexive-uniform-large-globular-structure-Pointed-Type :
  is-reflexive-large-globular-structure
    uniform-large-globular-structure-Pointed-Type
is-reflexive-uniform-large-globular-structure-Pointed-Type =
  λ where
  .is-reflexive-1-cell-is-reflexive-large-globular-structure X 
    id-pointed-map
  .is-reflexive-globular-structure-1-cell-is-reflexive-large-globular-structure
    X Y 
    is-reflexive-uniform-globular-structure-pointed-Π

is-transitive-uniform-large-globular-structure-Pointed-Type :
  is-transitive-large-globular-structure
    uniform-large-globular-structure-Pointed-Type
is-transitive-uniform-large-globular-structure-Pointed-Type =
  λ where
  .comp-1-cell-is-transitive-large-globular-structure g f 
    g ∘∗ f
  .is-transitive-globular-structure-1-cell-is-transitive-large-globular-structure
    X Y 
    is-transitive-uniform-globular-structure-pointed-Π

The uniform noncoherent large wild higher precategory of pointed types

uniform-Pointed-Type-Noncoherent-Large-Wild-Higher-Precategory :
  Noncoherent-Large-Wild-Higher-Precategory lsuc (_⊔_)
uniform-Pointed-Type-Noncoherent-Large-Wild-Higher-Precategory =
  λ where
  .obj-Noncoherent-Large-Wild-Higher-Precategory 
    Pointed-Type
  .hom-globular-structure-Noncoherent-Large-Wild-Higher-Precategory 
    uniform-large-globular-structure-Pointed-Type
  .id-hom-globular-structure-Noncoherent-Large-Wild-Higher-Precategory 
    is-reflexive-uniform-large-globular-structure-Pointed-Type
  .comp-hom-globular-structure-Noncoherent-Large-Wild-Higher-Precategory 
    is-transitive-uniform-large-globular-structure-Pointed-Type

The nonuniform definition of the wild category of pointed types

The nonuniform globular structure on dependent pointed function types

globular-structure-pointed-Π :
  {l1 l2 : Level} {A : Pointed-Type l1} {B : Pointed-Fam l2 A} 
  globular-structure (l1  l2) (pointed-Π A B)
globular-structure-pointed-Π =
  λ where
  .1-cell-globular-structure 
    pointed-htpy
  .globular-structure-1-cell-globular-structure f g
    .1-cell-globular-structure 
    pointed-2-htpy
  .globular-structure-1-cell-globular-structure f g
    .globular-structure-1-cell-globular-structure H K 
      globular-structure-Id (pointed-2-htpy H K)

is-reflexive-globular-structure-pointed-Π :
  {l1 l2 : Level} {A : Pointed-Type l1} {B : Pointed-Fam l2 A} 
  is-reflexive-globular-structure (globular-structure-pointed-Π {A = A} {B})
is-reflexive-globular-structure-pointed-Π =
  λ where
  .is-reflexive-1-cell-is-reflexive-globular-structure 
    refl-pointed-htpy
  .is-reflexive-globular-structure-1-cell-is-reflexive-globular-structure f g
    .is-reflexive-1-cell-is-reflexive-globular-structure 
      refl-pointed-2-htpy
  .is-reflexive-globular-structure-1-cell-is-reflexive-globular-structure f g
    .is-reflexive-globular-structure-1-cell-is-reflexive-globular-structure
      H K 
      is-reflexive-globular-structure-Id (pointed-2-htpy H K)

is-transitive-globular-structure-pointed-Π :
  {l1 l2 : Level} {A : Pointed-Type l1} {B : Pointed-Fam l2 A} 
  is-transitive-globular-structure (globular-structure-pointed-Π {A = A} {B})
is-transitive-globular-structure-pointed-Π =
  λ where
  .comp-1-cell-is-transitive-globular-structure {f} {g} {h} H K 
    concat-pointed-htpy {f = f} {g} {h} K H
  .is-transitive-globular-structure-1-cell-is-transitive-globular-structure H K
    .comp-1-cell-is-transitive-globular-structure α β 
    concat-pointed-2-htpy β α
  .is-transitive-globular-structure-1-cell-is-transitive-globular-structure H K
    .is-transitive-globular-structure-1-cell-is-transitive-globular-structure
      α β 
      is-transitive-globular-structure-Id (pointed-2-htpy α β)

The uniform large globular structure on pointed types

large-globular-structure-Pointed-Type :
  large-globular-structure (_⊔_) Pointed-Type
large-globular-structure-Pointed-Type =
  λ where
  .1-cell-large-globular-structure X Y 
    (X →∗ Y)
  .globular-structure-1-cell-large-globular-structure X Y 
    globular-structure-pointed-Π

is-reflexive-large-globular-structure-Pointed-Type :
  is-reflexive-large-globular-structure large-globular-structure-Pointed-Type
is-reflexive-large-globular-structure-Pointed-Type =
  λ where
  .is-reflexive-1-cell-is-reflexive-large-globular-structure X 
    id-pointed-map
  .is-reflexive-globular-structure-1-cell-is-reflexive-large-globular-structure
    X Y 
    is-reflexive-globular-structure-pointed-Π

is-transitive-large-globular-structure-Pointed-Type :
  is-transitive-large-globular-structure large-globular-structure-Pointed-Type
is-transitive-large-globular-structure-Pointed-Type =
  λ where
  .comp-1-cell-is-transitive-large-globular-structure g f 
    g ∘∗ f
  .is-transitive-globular-structure-1-cell-is-transitive-large-globular-structure
    X Y 
    is-transitive-globular-structure-pointed-Π

The nonuniform noncoherent large wild higher precategory of pointed types

Pointed-Type-Noncoherent-Large-Wild-Higher-Precategory :
  Noncoherent-Large-Wild-Higher-Precategory lsuc (_⊔_)
Pointed-Type-Noncoherent-Large-Wild-Higher-Precategory =
  λ where
  .obj-Noncoherent-Large-Wild-Higher-Precategory 
    Pointed-Type
  .hom-globular-structure-Noncoherent-Large-Wild-Higher-Precategory 
    large-globular-structure-Pointed-Type
  .id-hom-globular-structure-Noncoherent-Large-Wild-Higher-Precategory 
    is-reflexive-large-globular-structure-Pointed-Type
  .comp-hom-globular-structure-Noncoherent-Large-Wild-Higher-Precategory 
    is-transitive-large-globular-structure-Pointed-Type

Properties

The left unit law for the identity pointed map

module _
  {l1 l2 : Level} {A : Pointed-Type l1} {B : Pointed-Type l2}
  where

  left-unit-law-id-pointed-map :
    (f : A →∗ B)  id-pointed-map ∘∗ f ~∗ f
  pr1 (left-unit-law-id-pointed-map f) = refl-htpy
  pr2 (left-unit-law-id-pointed-map f) = right-unit  ap-id (pr2 f)

The right unit law for the identity pointed map

module _
  {l1 l2 : Level} {A : Pointed-Type l1} {B : Pointed-Type l2}
  where

  right-unit-law-id-pointed-map :
    (f : A →∗ B)  f ∘∗ id-pointed-map ~∗ f
  right-unit-law-id-pointed-map = refl-pointed-htpy

Recent changes