module Cat.Instances.Shape.Interval where

Interval categoryπŸ”—

The interval category is the category with two points, called (as a form of endearment) and and a single arrow between them. Correspondingly, in shorthand this category is referred to as Since it has a single (non-trivial) arrow, it is a partial order; In fact, it is the partial order generated by the type of booleans and the natural ordering on them, with

open Precategory

Bool-poset : Poset lzero lzero
Bool-poset = po where
  R : Bool β†’ Bool β†’ Type
  R false false = ⊀
  R false true  = ⊀
  R true  false = βŠ₯
  R true  true  = ⊀
Note

We define the relation by recursion, rather than by induction, to avoid the issues with computational behaviour with indexed inductive types in Cubical Agda. The interval category is the category underlying the poset of booleans:

0≀1 : Precategory lzero lzero
0≀1 = posetβ†’category Bool-poset

MeetsπŸ”—

Note that the category is finitely complete (i.e.Β it is bounded, and has binary meets for every pair of elements): The top element is (go figure), and meets are given by the boolean β€œand” function.

0≀1-top : Terminal 0≀1
0≀1-top .top = true

0≀1-top .has⊀ false .centre = tt
0≀1-top .has⊀ false .paths tt = refl

0≀1-top .has⊀ true  .centre = tt
0≀1-top .has⊀ true  .paths tt = refl

0≀1-products : βˆ€ A B β†’ Product 0≀1 A B
0≀1-products A B .apex = and A B
A ridiculous amount of trivial pattern matching is needed to establish that this cone is universal, but fortunately, we can appeal to thinness to establish commutativity and uniqueness.
0≀1-products false false .π₁ = tt
0≀1-products false true  .π₁ = tt
0≀1-products true  false .π₁ = tt
0≀1-products true  true  .π₁ = tt

0≀1-products false false .Ο€β‚‚ = tt
0≀1-products false true  .Ο€β‚‚ = tt
0≀1-products true  false .Ο€β‚‚ = tt
0≀1-products true  true  .Ο€β‚‚ = tt

0≀1-products A B .has-is-product .⟨_,_⟩ = meet _ _ _ where
  meet : βˆ€ A B Q (p : Hom 0≀1 Q A) (q : Hom 0≀1 Q B) β†’ Hom 0≀1 Q (and A B)
  meet false false false tt tt = tt
  meet false false true  () ()
  meet false true  false tt tt = tt
  meet false true  true  () tt
  meet true  false false tt tt = tt
  meet true  false true  tt ()
  meet true  true  false tt tt = tt
  meet true  true  true  tt tt = tt
0≀1-products A B .has-is-product .Ο€β‚βˆ˜factor = Poset.≀-thin Bool-poset _ _
0≀1-products A B .has-is-product .Ο€β‚‚βˆ˜factor = Poset.≀-thin Bool-poset _ _
0≀1-products A B .has-is-product .unique _ _ _ = Poset.≀-thin Bool-poset _ _

The space of arrowsπŸ”—

The total space of the family of a precategory is referred to as its β€œspace of arrows”. A point in this space is a β€œfree-standing arrow”: it comes equipped with its own domain and codomain. We note that, since a precategory has no upper bound on the h-level of its space of objects, its space of arrows also need not be particularly truncated. However, for a thin category it is a set, and for a univalent category it is a groupoid.

An equivalent description of the space of arrows is as the collection of functors a functor out of corresponds rather directly to picking out an arrow in Its domain is the object that maps to, and is codomain is the object that maps to.

Arrows : Precategory o β„“ β†’ Type (o βŠ” β„“)
Arrows C = Σ[ A ∈ C ] Σ[ B ∈ C ] (C.Hom A B)
  where module C = Precategory C

We now fix a category and prove the correspondence between the space of arrows as defined above, and the space of functors

module _ {C : Precategory o β„“} where
  import Cat.Reasoning C as C

  arrowβ†’functor : Arrows C β†’ Functor 0≀1 C
  arrow→functor (A , B , f) = fun where
    fun : Functor _ _
    fun .Fβ‚€ false = A
    fun .Fβ‚€ true = B
    fun .F₁ {false} {false} tt = C.id
    fun .F₁ {false} {true}  tt = f
    fun .F₁ {true}  {false} ()
    fun .F₁ {true}  {true}  tt = C.id

The other direction, turning a functor into an object of Arr, is mostly immediate: we can extract the non-trivial arrow by seeing what the non-trivial arrow maps to, and the domain/codomain can be inferred by Agda.

  functorβ†’arrow : Functor 0≀1 C β†’ Arrows C
  functorβ†’arrow F = _ , _ , F .F₁ {false} {true} tt

That this function is an equivalence is also straightforward: The only non-trivial step is appealing to functoriality of specifically that it must preserve identity arrows. The converse direction (going functor β†’ arrow β†’ functor) is definitionally the identity.

  arrow≃functor : is-equiv arrowβ†’functor
  arrow≃functor = is-isoβ†’is-equiv (iso functorβ†’arrow rinv linv) where
    rinv : is-right-inverse functor→arrow arrow→functor
    rinv F =
      Functor-path
        (Ξ» { true β†’ refl ; false β†’ refl })
        (Ξ» { {false} {false} tt β†’ sym (F-id F)
           ; {false} {true}  tt β†’ refl
           ; {true}  {false} ()
           ; {true}  {true}  tt β†’ sym (F-id F) })

    linv : is-left-inverse functor→arrow arrow→functor
    linv x = refl

Correspondingly, we define the arrow category as the functor category

Arr : Precategory o β„“ β†’ Precategory (o βŠ” β„“) β„“
Arr C = Cat[ 0≀1 , C ]