module Cat.Diagram.Monad where

MonadsπŸ”—

A monad on a category is one way of categorifying the concept of monoid. Specifically, rather than living in a monoidal category, a monad lives in a bicategory. Here, we concern ourselves with the case of monads in the bicategory of categories, so that we may say: A monad is an endofunctor equipped with a unit natural transformation and a multiplication

  record Monad : Type (o βŠ” h) where
    no-eta-equality
    field
      M    : Functor C C
      unit : Id => M
      mult : (M F∘ M) => M

Furthermore, these natural transformations must satisfy identity and associativity laws exactly analogous to those of a monoid.

    field
      left-ident  : βˆ€ {x} β†’ ΞΌ x C.∘ M₁ (Ξ· x) ≑ C.id
      right-ident : βˆ€ {x} β†’ ΞΌ x C.∘ Ξ· (Mβ‚€ x) ≑ C.id
      mult-assoc  : βˆ€ {x} β†’ ΞΌ x C.∘ M₁ (ΞΌ x) ≑ ΞΌ x C.∘ ΞΌ (Mβ‚€ x)

Algebras over a monadπŸ”—

One way of interpreting a monad is as giving a signature for an algebraic theory. For instance, the free monoid monad describes the signature for the theory of monoids, and the free group monad describes the theory of groups.

Under this light, an algebra over a monad is a way of evaluating the abstract operations given by a monadic expression to a concrete value. Formally, an algebra for is given by a choice of object and a morphism

  record Algebra-on (M : Monad) (ob : C.Ob) : Type (o βŠ” h) where
    no-eta-equality
    open Monad M

    field
      Ξ½ : C.Hom (Mβ‚€ ob) ob

This morphism must satisfy equations categorifying those which define a monoid action. If we think of as specifying a signature of effects, then v-unit says that the unit has no effects, and v-mult says that, given two layers it doesn’t matter whether you first join then evaluate, or evaluate twice.

      Ξ½-unit : Ξ½ C.∘ Ξ· ob ≑ C.id
      Ξ½-mult : Ξ½ C.∘ M₁ Ξ½ ≑ Ξ½ C.∘ ΞΌ ob

Eilenberg-Moore categoryπŸ”—

If we take a monad as the signature of an (algebraic) theory, and as giving models of that theory, then we can ask (like with everything in category theory): Are there maps between interpretations? The answer (as always!) is yes: An algebra homomorphism is a map of the underlying objects which β€œcommutes with the algebras”.

We can be more specific about β€œcommuting with the algebras” by drawing a square: A map in the ambient category is a homomorphism of when the square below commutes.

We can assemble and their homomorphisms into a displayed category over the type of objects over some consists of all possible algebra structures on and the type of morphisms over are proofs that is an homomorphism.

  Monad-algebras : Displayed C (o βŠ” β„“) β„“
  Monad-algebras .Ob[_] X = Algebra-on C M X
  Monad-algebras .Hom[_] f Ξ± Ξ² = f C.∘ Ξ± .Ξ½ ≑ Ξ² .Ξ½ C.∘ M₁ f
  Monad-algebras .Hom[_]-set _ _ _ = hlevel 2

Defining the identity and composition maps is mostly an exercise in categorical yoga:

  Monad-algebras .id' {X} {Ξ±} =
    C.id C.∘ Ξ± .Ξ½    β‰‘βŸ¨ C.idl _ βˆ™ C.intror M-id βŸ©β‰‘
    Ξ± .Ξ½ C.∘ M₁ C.id ∎
  Monad-algebras ._∘'_ {_} {_} {_} {α} {β} {γ} {f = f} {g = g} p q =
    (f C.∘ g) C.∘ Ξ± .Ξ½       β‰‘βŸ¨ C.pullr q βŸ©β‰‘
    f C.∘ Ξ² .Ξ½ C.∘ M₁ g      β‰‘βŸ¨ C.pulll p βŸ©β‰‘
    (Ξ³ .Ξ½ C.∘ M₁ f) C.∘ M₁ g β‰‘βŸ¨ C.pullr (sym (M-∘ _ _)) βŸ©β‰‘
    Ξ³ .Ξ½ C.∘ M₁ (f C.∘ g)    ∎
The equations all hold trivially, as the type of displayed morphisms over is a proposition.
  Monad-algebras .idr' _ = prop!
  Monad-algebras .idl' _ = prop!
  Monad-algebras .assoc' _ _ _ = prop!

The total category of this displayed category is referred to as the Eilenberg Moore category of

  Eilenberg-Moore : Precategory (o βŠ” β„“) β„“
  Eilenberg-Moore = ∫ Monad-algebras

  private
    module EM = Cat.Reasoning Eilenberg-Moore

  Algebra : Type _
  Algebra = EM.Ob

  Algebra-hom : (X Y : Algebra) β†’ Type _
  Algebra-hom X Y = EM.Hom X Y

By projecting the underlying object of the algebras, and the underlying morphisms of the homomorphisms between them, we can define a functor from Eilenberg-Moore back to the underlying category:

  Forget-EM : Functor (Eilenberg-Moore M) C
  Forget-EM = Ο€αΆ  (Monad-algebras M)

This functor is faithful as the maps in the Eilenberg-Moore category are structured maps of

  Forget-EM-is-faithful : is-faithful Forget-EM
  Forget-EM-is-faithful = ext

Moreover, this functor is conservative. This follows from a bit of routine algebra.

  Forget-EM-is-conservative : is-conservative Forget-EM
  Forget-EM-is-conservative {X , Ξ±} {Y , Ξ²} {f = f} f-inv =
    EM.make-invertible f-alg-inv (ext invl) (ext invr)
    where
      open C.is-invertible f-inv

      f-alg-inv : Algebra-hom M (Y , Ξ²) (X , Ξ±)
      f-alg-inv .hom = inv
      f-alg-inv .preserves =
        inv C.∘ Ξ² .Ξ½                                 β‰‘βŸ¨ apβ‚‚ C._∘_ refl (C.intror (MR.annihilate invl)) βŸ©β‰‘
        inv C.∘ Ξ² .Ξ½ C.∘ M₁ (f .hom) C.∘ M.M₁ inv    β‰‘βŸ¨ apβ‚‚ C._∘_ refl (C.extendl (sym (f .preserves))) βŸ©β‰‘
        inv C.∘ f .hom C.∘ Ξ± .Ξ½ C.∘ M.M₁ inv         β‰‘βŸ¨ C.cancell invr βŸ©β‰‘
        Ξ± .Ξ½ C.∘ M₁ inv                              ∎

UnivalenceπŸ”—

The displayed category of monad algebras is a displayed univalent category. This is relatively straightforward to show: first, note that the type of displayed isomorphisms must be a proposition. Next, we can perform a bit of simple algebra to show that the actions of two isomorphic are, in fact, equal.

  Monad-algebras-is-category : is-category-displayed (Monad-algebras M)
  Monad-algebras-is-category f Ξ± (Ξ² , p) (Ξ³ , q) =
    Ξ£-prop-path (Ξ» _ _ _ β†’ ext prop!) $ ext $
      Ξ² .Ξ½                         β‰‘βŸ¨ C.introl invl βŸ©β‰‘
      (to C.∘ from) C.∘ Ξ² .Ξ½       β‰‘βŸ¨ C.pullr (p .from') βŸ©β‰‘
      to C.∘ Ξ± .Ξ½ C.∘ M₁ from      β‰‘βŸ¨ C.pulll (q .to') βŸ©β‰‘
      (Ξ³ .Ξ½ C.∘ M₁ to) C.∘ M₁ from β‰‘βŸ¨ MR.cancelr invl βŸ©β‰‘
      γ .ν                         ∎
    where
      open C._β‰…_ f
      open Cat.Displayed.Morphism (Monad-algebras M)

By univalence of total categories, we can immediately deduce that the Eilenberg-Moore category inherits univalence from the base category.

  EM-is-category : is-category C β†’ is-category (Eilenberg-Moore M)
  EM-is-category cat =
    is-category-total (Monad-algebras M) cat Monad-algebras-is-category

Free algebrasπŸ”—

In exactly the same way that we may construct a free group by taking the inhabitants of some set as generating the β€œwords” of a group, we can, given an object of the underlying category, build a free on Keeping with our interpretation of monads as logical signatures, this is the syntactic model of with a set of β€œneutrals” chosen from the object

This construction is a lot simpler to do in generality than in any specific case: We can always turn into an by taking the underlying object to be and the algebra map to be the monadic multiplication; The associativity and unit laws of the monad itself become those of the

  Free-EM : Functor C (Eilenberg-Moore M)
  Free-EM .Fβ‚€ A .fst = Mβ‚€ A
  Free-EM .Fβ‚€ A .snd .Ξ½ = ΞΌ A
  Free-EM .Fβ‚€ A .snd .Ξ½-mult = mult-assoc
  Free-EM .Fβ‚€ A .snd .Ξ½-unit = right-ident

The construction of free is furthermore functorial on the underlying objects; Since the monadic multiplication is a natural transformation the naturality condition (drawn below) doubles as showing that the functorial action of can be taken as an algebraic action:

  Free-EM .F₁ f .hom = M₁ f
  Free-EM .F₁ f .preserves = sym $ mult.is-natural _ _ _
  Free-EM .F-id = ext M-id
  Free-EM .F-∘ f g = ext (M-∘ f g)

This is a free construction in the precise sense of the word: it’s the left adjoint to the functor Forget-EM, so in particular it provides a systematic, universal way of mapping from to

  open _⊣_

  Free-EM⊣Forget-EM : Free-EM ⊣ Forget-EM
  Free-EM⊣Forget-EM .unit =
    NT M.Ξ· M.unit.is-natural
  Free-EM⊣Forget-EM .counit =
    NT (Ξ» x β†’ total-hom (x .snd .Ξ½) (sym (x .snd .Ξ½-mult)))
      (Ξ» x y f β†’ ext (sym (f .preserves)))
  Free-EM⊣Forget-EM .zig = ext left-ident
  Free-EM⊣Forget-EM .zag {x} = x .snd .ν-unit

The full subcategory of free is often referred to as the Kleisli category of

  Kleisli : Precategory (o βŠ” β„“) β„“
  Kleisli = Essential-image (Free-EM {M = M})

If is univalent then so is the Kleisli category as it is a full subcategory of a univalent category.

  Kleisli-is-category : is-category C β†’ is-category (Kleisli M)
  Kleisli-is-category cat = Essential-image-is-category Free-EM
    (EM-is-category cat)

As the Kleisli category is a full subcategory, there is a canonical full inclusion into the Eilenberg-Moore category.

  Kleisli→EM : Functor (Kleisli M) (Eilenberg-Moore M)
  Kleisli→EM = Forget-full-subcat

  Kleisli→EM-is-ff : is-fully-faithful Kleisli→EM
  Kleisli→EM-is-ff = id-equiv

Additionally, the free/forgetful adjunction between and the Eilenberg-Moore category can be restricted to the Kleisli category.

  Forget-Kleisli : Functor (Kleisli M) C
  Forget-Kleisli = Forget-EM F∘ Kleisliβ†’EM

  Free-Kleisli : Functor C (Kleisli M)
  Free-Kleisli = Essential-inc Free-EM

  Free-Kleisli⊣Forget-Kleisli : Free-Kleisli ⊣ Forget-Kleisli
  Free-Kleisli⊣Forget-Kleisli ._⊣_.unit ._=>_.η = η
  Free-Kleisli⊣Forget-Kleisli ._⊣_.unit .is-natural = unit.is-natural
  Free-Kleisli⊣Forget-Kleisli ._⊣_.counit ._=>_.η ((X , α) , free) =
    total-hom (Ξ± .Ξ½) (sym (Ξ± .Ξ½-mult))
  Free-Kleisli⊣Forget-Kleisli ._⊣_.counit .is-natural _ _ f =
    ext (sym (f .preserves))
  Free-Kleisli⊣Forget-Kleisli ._⊣_.zig =
    ext left-ident
  Free-Kleisli⊣Forget-Kleisli ._⊣_.zag {(X , α) , free} =
    Ξ± . Ξ½-unit

Note that the forgetful functor from the Kleisli category of to is also faithful and conservative.

  Forget-Kleisli-is-faithful : is-faithful Forget-Kleisli
  Forget-Kleisli-is-faithful = Forget-EM-is-faithful

  Forget-Kleisli-is-conservative : is-conservative Forget-Kleisli
  Forget-Kleisli-is-conservative f-inv =
    super-inv→sub-inv _ $
    Forget-EM-is-conservative f-inv