module Algebra.Group.Cat.Monadic {β„“} where

Monadicity of the category of groupsπŸ”—

We prove that the category is monadic over or more specifically that the free group adjunction is monadic. Rather than appealing to a monadicity theorem, we show this directly by calculation. This actually gives us a slightly sharper result, too: rather than showing that the comparison functor is an equivalence, we show directly that it is an isomorphism of categories. This doesn’t exactly matter since and are both univalent categories, but it’s interesting that it’s easier to construct an isomorphism than it is to construct an equivalence.

Let us abbreviate the monad induced by the free group adjunction by What we must show is that any structure on a set gives rise to a group structure on and that this process is reversible: If is our original algebra, applying our process then applying the comparison functor has to give back.

Algebra-onβ†’group-on : {G : Set β„“} β†’ Algebra-on (Sets β„“) T G β†’ Group-on ∣ G ∣
Algebra-on→group-on {G = G} alg = grp where
  open Algebra-on alg

  mult : ∣ G ∣ β†’ ∣ G ∣ β†’ ∣ G ∣
  mult x y = Ξ½ (inc x β—† inc y)

The thing to keep in mind is that a structure is a way of β€œfolding” a word built up from generators in the set so that if we build a word from two generators folding that should be the same thing as a binary multiplication That’s the definition of the induced multiplication structure! We now must show that this definition is indeed a group structure, which is an incredibly boring calculation.

I’m not exaggerating, it’s super boring.
  abstract
    assoc : βˆ€ x y z β†’ mult x (mult y z) ≑ mult (mult x y) z
    assoc x y z = sym $
      Ξ½ (inc (Ξ½ (inc x β—† inc y)) β—† inc z)                β‰‘βŸ¨ (Ξ» i β†’ Ξ½ (inc (Ξ½ (inc x β—† inc y)) β—† inc (Ξ½-unit (~ i) z))) βŸ©β‰‘
      Ξ½ (inc (Ξ½ (inc x β—† inc y)) β—† inc (Ξ½ (inc z)))      β‰‘βŸ¨ happly Ξ½-mult (inc _ β—† inc _) βŸ©β‰‘
      Ξ½ (T.mult.Ξ· G (inc (inc x β—† inc y) β—† inc (inc z))) β‰‘Λ˜βŸ¨ ap Ξ½ (f-assoc _ _ _) βŸ©β‰‘Λ˜
      Ξ½ (T.mult.Ξ· G (inc (inc x) β—† inc (inc y β—† inc z))) β‰‘Λ˜βŸ¨ happly Ξ½-mult (inc _ β—† inc _) βŸ©β‰‘Λ˜
      Ξ½ (inc (Ξ½ (inc x)) β—† inc (Ξ½ (inc y β—† inc z)))      β‰‘βŸ¨ (Ξ» i β†’ Ξ½ (inc (Ξ½-unit i x) β—† inc (Ξ½ (inc y β—† inc z)))) βŸ©β‰‘
      Ξ½ (inc x β—† inc (Ξ½ (inc y β—† inc z)))                ∎

    invl : βˆ€ x β†’ mult (Ξ½ (inv (inc x))) x ≑ Ξ½ nil
    invl x =
      Ξ½ (inc (Ξ½ (inv (inc x))) β—† inc x)                β‰‘βŸ¨ (Ξ» i β†’ Ξ½ (inc (Ξ½ (inv (inc x))) β—† inc (Ξ½-unit (~ i) x))) βŸ©β‰‘
      Ξ½ (inc (Ξ½ (inv (inc x))) β—† inc (Ξ½ (inc x)))      β‰‘βŸ¨ happly Ξ½-mult (inc _ β—† inc _) βŸ©β‰‘
      Ξ½ (T.mult.Ξ· G (inc (inv (inc x)) β—† inc (inc x))) β‰‘βŸ¨ ap Ξ½ (f-invl _) βŸ©β‰‘
      Ξ½ (T.mult.Ξ· G (inc nil))                         β‰‘βŸ¨βŸ©
      ν nil                                            ∎

    idl' : βˆ€ x β†’ mult (Ξ½ nil) x ≑ x
    idl' x =
      Ξ½ (inc (Ξ½ nil) β—† inc x)            β‰‘βŸ¨ (Ξ» i β†’ Ξ½ (inc (Ξ½ nil) β—† inc (Ξ½-unit (~ i) x))) βŸ©β‰‘
      Ξ½ (inc (Ξ½ nil) β—† inc (Ξ½ (inc x)))  β‰‘βŸ¨ happly Ξ½-mult (inc _ β—† inc _) βŸ©β‰‘
      Ξ½ (T.mult.Ξ· G (nil β—† inc (inc x))) β‰‘βŸ¨ ap Ξ½ (f-idl _) βŸ©β‰‘
      Ξ½ (inc x)                          β‰‘βŸ¨ happly Ξ½-unit x βŸ©β‰‘
      x                                  ∎

  grp : Group-on ∣ G ∣
  grp .Group-on._⋆_ = mult
  grp .Group-on.has-is-group = to-group-on fg .Group-on.has-is-group where
    fg : make-group ∣ G ∣
    fg .make-group.group-is-set = G .is-tr
    fg .make-group.unit = Ξ½ nil
    fg .make-group.mul = mult
    fg .make-group.inv x = Ξ½ (inv (inc x))
    fg .make-group.assoc = assoc
    fg .make-group.invl = invl
    fg .make-group.idl = idl'

We now show that this construction fits into defining an inverse (on the nose!) to the comparison functor. This is slightly easier than it sounds like: We must show that the functor is fully faithful, and that our mapping above is indeed invertible.

Fully faithfulness is almost immediate: a homomorphism of preserves underlying multiplication because the algebra structure of (resp. is defined in terms of that multiplication. Since we leave the underlying map intact, and being a homomorphism (either kind) is a property, the comparison functor is fully faithful.

Group-is-monadic : is-monadic F⊣U
Group-is-monadic = is-precat-iso→is-equivalence
  record { has-is-ff = ff ; has-is-iso = is-iso→is-equiv isom } where
  open Algebra-hom
  open Algebra-on

  k₁inv : βˆ€ {G H} β†’ Algebra-hom (Sets β„“) T (K.β‚€ G) (K.β‚€ H) β†’ Groups.Hom G H
  k₁inv hom .hom = hom .morphism
  k₁inv hom .preserves .is-group-hom.pres-⋆ x y = happly (hom .commutes) (inc x β—† inc y)

  ff : is-fully-faithful K
  ff = is-isoβ†’is-equiv $ iso k₁inv (Ξ» x β†’ Algebra-hom-path (Sets β„“) refl)
                                   (Ξ» x β†’ Grp.Grpβ†ͺSets-is-faithful refl)

To show that the object mapping of the comparison functor is invertible, we appeal to univalence. Since the types are kept the same, it suffices to show that passing between a multiplication and an algebra map doesn’t lose any information. This is immediate in one direction, but the other direction is by induction on β€œwords”.

  isom : is-iso K.β‚€
  isom .is-iso.inv (A , alg) = A , Algebra-on→group-on alg
  isom .is-iso.linv x = ∫-Path Groups-equational
    (total-hom (Ξ» x β†’ x) (record { pres-⋆ = Ξ» x y β†’ refl }))
    id-equiv
  isom .is-iso.rinv x = Ξ£-pathp refl (Algebra-on-pathp _ _ go) where
    alg = x .snd
    grp = Algebra-on→group-on alg
    rec = fold-free-group {G = x .fst , grp} (Ξ» x β†’ x)
    module G = Group-on grp

    alg-gh : is-group-hom (Free-Group ⌞ x ⌟ .snd) grp (x .snd .ν)
    alg-gh .is-group-hom.pres-⋆ x y = sym (happly (alg .Ξ½-mult) (inc _ β—† inc _))

    go : rec .hom ≑ x .snd .Ξ½
    go = funext $ Free-elim-prop _ (Ξ» _ β†’ hlevel 1)
      (Ξ» x β†’ sym (happly (alg .Ξ½-unit) x))
      (Ξ» x p y q β†’ rec .preserves .is-group-hom.pres-⋆ x y
                Β·Β· apβ‚‚ G._⋆_ p q
                Β·Β· happly (alg .Ξ½-mult) (inc _ β—† inc _))
      (Ξ» x p β†’ is-group-hom.pres-inv (rec .preserves) {x = x}
              Β·Β· ap G.inverse p
              Β·Β· sym (is-group-hom.pres-inv alg-gh {x = x}))
      refl