module Cat.Functor.Kan.Global

Global Kan extensionsπŸ”—

Recall that a left Kan extension of along is a universal solution to extending to a functor In particularly happy cases (e.g.Β when is small and is cocomplete), the left Kan extension along exists for any When this happens, the assignment extends to a functor, which we call a global Kan extension.

module _ (has-lan : (G : Functor C D) β†’ Lan p G) where
  Lan-functor : Functor Cat[ C , D ] Cat[ C' , D ]
  Lan-functor .Fβ‚€ G = has-lan G .Ext
  Lan-functor .F₁ {x} {y} ΞΈ =
    has-lan x .Οƒ (has-lan y .eta ∘nt ΞΈ)
  Lan-functor .F-id {x} = has-lan x .Οƒ-uniq (ext Ξ» _ β†’ D.id-comm)
  Lan-functor .F-∘ {x} {y} {z} f g =
    has-lan x .Οƒ-uniq $ ext Ξ» a β†’ sym $
        D.pullr   (has-lan x .Οƒ-comm Ξ·β‚š a)
      βˆ™ D.extendl (has-lan y .Οƒ-comm Ξ·β‚š a)

Functoriality follows, essentially, from the fact that left Kan extensions are universal: we can map between them in a functorial way using only the defining natural transformations in the diagram, without appealing to the details of a particular computation. Moreover, the left Kan extension functor itself has a universal property: it is a left adjoint to the precomposition functor

  Lan⊣precompose : Lan-functor ⊣ precompose p
  Lan⊣precompose = hom-isoβ†’adjoints f (is-isoβ†’is-equiv eqv) natural where
    f : βˆ€ {x : Functor C D} {y : Functor C' D} β†’ has-lan x .Ext => y β†’ x => y F∘ p
    f {x} {y} ΞΈ = (ΞΈ β—‚ p) ∘nt has-lan x .eta

    open is-iso

    eqv : βˆ€ {x} {y} β†’ is-iso (f {x} {y})
    eqv {x} {y} .inv ΞΈ = has-lan _ .Οƒ ΞΈ
    eqv {x} {y} .rinv ΞΈ = has-lan x .Οƒ-comm
    eqv {x} {y} .linv ΞΈ = has-lan _ .Οƒ-uniq refl

    natural : hom-iso-natural {L = Lan-functor} {precompose p} f
    natural {b = b} g h x = ext Ξ» a β†’
      D.pullr (D.pullr (has-lan _ .Οƒ-comm Ξ·β‚š a))
      βˆ™ apβ‚‚ D._∘_ refl (D.pushr refl)

And, since adjoints are unique, if has any left adjoint, then its values generate Kan extensions:

adjoint-precompose→Lan
  : (F : Functor Cat[ C , D ] Cat[ C' , D ])
  β†’ (adj : F ⊣ precompose p)
  β†’ (G : Functor C D)
  β†’ is-lan p G (F .Fβ‚€ G) (adj ._⊣_.unit .Ξ· G)
adjoint-precompose→Lan F adj G = extn where
  open Lan
  open is-lan
  module adj = _⊣_ adj

  extn : is-lan p G _ _
  extn .Οƒ Ξ± = R-adjunct adj Ξ±
  extn .Οƒ-comm {M = M} {Ξ± = Ξ±} = ext Ξ» a β†’
      D.pullr   (sym (adj.unit .is-natural _ _ _) Ξ·β‚š a)
    βˆ™ D.cancell (adj.zag Ξ·β‚š a)
  extn .Οƒ-uniq x = Equiv.injective (_ , L-adjunct-is-equiv adj)
    (L-R-adjunct adj _ βˆ™ x)

This in turn implies that adjoints are Kan extensions.