module Cat.Diagram.Monad.Codensity where

Codensity monadsπŸ”—

Let be a functor with a left adjoint Some pretty standard abstract nonsense tells us that the composite is a monad in with the unit and multiplication inherited from the adjunction The easiest cases to picture are when is and is the β€œunderlying set” functor from an algebraic category (like monoids or groups). What’s slightly more interesting is that functors without left adjoints may also induce monads!

This is called the codensity monad of the functor and it exists whenever admits limits indexed by categories the size of When does have a left adjoint, its codensity monad coincides with the ordinary monad-from-an-adjunction construction. Rather than unfolding the necessary limits here, though, we defer to general categorical machinery: right Kan extensions.

The really, really short of it is that the codensity monad of is the right Kan extension of along itself,

Constructing the monad structure on the functor is a bit involved, but it does serve as a very illustrative application of the universal property of right Kan extensions. Recall that, by definition, if we have a natural transformation (for our choice of functor then this extends to a (unique) natural transformation

For example, the unit map is obtained by extending the identity natural transformation which is implicit witnessing commutativity of the – – triangle below.

    unit-nt : Id F∘ F => F
    unit-nt .Ξ· x = B.id
    unit-nt .is-natural x y f = B.id-comm-sym

For the multiplication map, observe that we can piece together a natural transformation

using the canonical natural transformation Extending this map, then, gives us a natural transformation

    mult-nt : (Ext F∘ Ext) F∘ F => F
    mult-nt .Ξ· x = eps .Ξ· x B.∘ Ext.₁ (eps .Ξ· x)
    mult-nt .is-natural x y f =
      (eps .Ξ· y B.∘ Ext.₁ (eps .Ξ· y)) B.∘ Ext.₁ (Ext.₁ (F.₁ f)) β‰‘βŸ¨ Ext.extendr (eps .is-natural _ _ _) βŸ©β‰‘
      (eps .Ξ· y B.∘ Ext.F₁ (F.₁ f)) B.∘ Ext.₁ (eps .Ξ· x)        β‰‘βŸ¨ B.pushl (eps .is-natural _ _ _) βŸ©β‰‘
      F.₁ f B.∘ eps .Ξ· x B.∘ Ext.₁ (eps .Ξ· x)                   ∎

  Codensity : Monad B
  Codensity .M = Ext
  Codensity .unit = Οƒ unit-nt
  Codensity .mult = Οƒ mult-nt
Proving that these two extended natural transformations really do comprise a monad structure is a routine application of the uniqueness properties of right Kan extensions. The real noise comes from having to construct auxiliary natural transformations representing each pair of maps we want to compute with.
  Codensity .left-ident {x = x} = path Ξ·β‚š x where
    nat₁ : Ext => Ext
    nat₁ .Ξ· x = Οƒ mult-nt .Ξ· x B.∘ Ext.₁ (Οƒ unit-nt .Ξ· x)
    nat₁ .is-natural x y f = Ext.extendr (Οƒ unit-nt .is-natural x y f)
                           βˆ™ B.pushl (Οƒ mult-nt .is-natural _ _ _)

    abstract
      path : nat₁ ≑ idnt
      path = Οƒ-uniqβ‚‚ eps
        (ext Ξ» x β†’ sym
          ( B.pulll (Οƒ-comm Ξ·β‚š x)
          βˆ™ Ext.cancelr (Οƒ-comm Ξ·β‚š x)))
        (ext Ξ» _ β†’ B.intror refl)

  Codensity .right-ident {x = x} = path Ξ·β‚š x where
    nat₁ : Ext => Ext
    nat₁ .Ξ· x = Οƒ mult-nt .Ξ· x B.∘ Οƒ unit-nt .Ξ· (Ext.β‚€ x)
    nat₁ .is-natural x y f = B.extendr (Οƒ unit-nt .is-natural _ _ _)
                           βˆ™ B.pushl (Οƒ mult-nt .is-natural _ _ _)

    abstract
      path : nat₁ ≑ idnt
      path = Οƒ-uniqβ‚‚ eps
        (ext Ξ» x β†’ sym $
            B.pulll (Οƒ-comm Ξ·β‚š x)
          Β·Β· B.pullr (sym (Οƒ unit-nt .is-natural _ _ _))
          Β·Β· B.cancell (Οƒ-comm Ξ·β‚š x))
        (ext Ξ» _ β†’ B.intror refl)

  Codensity .mult-assoc {x = x} = path Ξ·β‚š x where
    mult' : (Ext F∘ Ext F∘ Ext) F∘ F => F
    mult' .Ξ· x = eps .Ξ· x B.∘ Ext.₁ (mult-nt .Ξ· x)
    mult' .is-natural x y f = Ext.extendr (mult-nt .is-natural _ _ _)
                            βˆ™ B.pushl (eps .is-natural _ _ _)

    sig₁ : Ext F∘ Ext F∘ Ext => Ext
    sig₁ .Ξ· x = Οƒ mult-nt .Ξ· x B.∘ Ext.₁ (Οƒ mult-nt .Ξ· x)
    sig₁ .is-natural x y f = Ext.extendr (Οƒ mult-nt .is-natural _ _ _)
                            βˆ™ B.pushl (Οƒ mult-nt .is-natural _ _ _)

    sigβ‚‚ : Ext F∘ Ext F∘ Ext => Ext
    sigβ‚‚ .Ξ· x = Οƒ mult-nt .Ξ· x B.∘ Οƒ mult-nt .Ξ· (Ext.β‚€ x)
    sigβ‚‚ .is-natural x y f = B.extendr (Οƒ mult-nt .is-natural _ _ _)
                            βˆ™ B.pushl (Οƒ mult-nt .is-natural _ _ _)

    abstract
      path : sig₁ ≑ sigβ‚‚
      path = Οƒ-uniqβ‚‚ {M = Ext F∘ Ext F∘ Ext} mult'
        (ext Ξ» x β†’ sym $
            B.pulll (Οƒ-comm Ξ·β‚š x)
          βˆ™ Ext.pullr (Οƒ-comm Ξ·β‚š x))
        (ext Ξ» x β†’ sym $
             B.pulll (Οƒ-comm Ξ·β‚š x)
          Β·Β· B.pullr (sym (Οƒ mult-nt .is-natural _ _ _))
          Β·Β· B.pulll (Οƒ-comm Ξ·β‚š x)
           βˆ™ Ext.pullr refl)

To understand what the codensity monad represents, recall that adjoints can be understood as efficient solutions to β€œoptimisation problems”. But when a functor does not admit a left adjoint, we conclude that there is no most efficient solution; This doesn’t mean that we can’t approximate a solution, though! And indeed, this kind of approximation is exactly what right Kan extensions are for.