module Cat.Functor.Compose where

Functoriality of functor composition🔗

When the operation of functor composition, (F,G)FG(F, G) \mapsto F \circ G, is seen as happening not only to functors but to whole functor categories, then it is itself functorial. This is a bit mind-bending at first, but this module will construct the functor composition functors. There’s actually a family of three related functors we’re interested in:

  • The functor composition functor itself, having type [B,C]×[A,B][A,C][B, C] \times [A, B] \to [A,C];
  • The precomposition functor associated with any p:CCp : C \to C', which will be denoted p:[C,D][C,D]- \circ p : [C', D] \to [C,D] in TeX and precompose in Agda;
  • The postcomposition functor associated with any p:CCp : C \to C', which will be denoted p:[A,C][A,C]p \circ - : [A,C] \to [A,C']; In the code, that’s postcompose.

Note that the precomposition functor p- \circ p is necessarily “contravariant” when compared with pp, in that it points in the opposite direction to pp.

F∘-functor : Functor (Cat[ B , C ] ×ᶜ Cat[ A , B ]) Cat[ A , C ]
F∘-functor {C = C} = go module F∘-f where
  private module C = Cat.Reasoning C
  go : Functor _ _
  go .F₀ (F , G) = F F∘ G

  go .F₁ {y = y , _} (n1 , n2) .η x = y .F₁ (n2 .η _) C.∘ n1 .η _

  go .F₁ {x = F , G} {y = W , X} (n1 , n2) .is-natural _ _ f =
    (W .F₁ (n2 .η _) C.∘ n1 .η _) C.∘ F .F₁ (G .F₁ f) ≡⟨ C.pullr (n1 .is-natural _ _ _)
    W .F₁ (n2 .η _) C.∘ W .F₁ (G .F₁ f) C.∘ n1 .η _   ≡⟨ C.extendl (W.weave (n2 .is-natural _ _ _))
    W .F₁ (X .F₁ f) C.∘ W .F₁ (n2 .η _) C.∘ n1 .η _
    where module W = Fr W

  go .F-id {x} = Nat-path λ _  C.idr _ ∙ x .fst .F-id
  go .F-∘ {x} {y , _} {z , _} (f , _) (g , _) = Nat-path λ _ 
    z .F₁ _ C.∘ f .η _ C.∘ g .η _                 ≡⟨ C.pushl (z .F-∘ _ _)
    z .F₁ _ C.∘ z .F₁ _ C.∘ f .η _ C.∘ g .η _     ≡⟨ C.extend-inner (sym (f .is-natural _ _ _))
    z .F₁ _ C.∘ f .η _ C.∘ y .F₁ _ C.∘ g .η _     ≡⟨ C.pulll refl ⟩
    (z .F₁ _ C.∘ f .η _) C.(y .F₁ _ C.∘ g .η _)

{-# DISPLAY F∘-f.go = F∘-functor #-}

Before setting up the pre/post-composition functors, we define their action on morphisms (natural transformations) first, called whiskerings, first. The mnemonic for triangles is that the base points towards the side that does not change, so in (e.g.) fθf \blacktriangleright \theta, the ff is unchanging: this expression has type fgfhfg \to fh, as long as θ:gh\theta : g \to h.

__ : F => G  (H : Functor C D)  F F∘ H => G F∘ H
__ nt H .η x = nt .η _
__ nt H .is-natural x y f = nt .is-natural _ _ _

__ : (H : Functor E C)  F => G  H F∘ F => H F∘ G
__ H nt .η x = H .F₁ (nt .η x)
__ H nt .is-natural x y f =
  sym (H .F-∘ _ _) ∙ ap (H .F₁) (nt .is-natural _ _ _) ∙ H .F-∘ _ _

With the whiskerings already defined, defining p- \circ p and pp \circ - is easy:

module _ (p : Functor C C') where
  precompose : Functor Cat[ C' , D ] Cat[ C , D ]
  precompose .F₀ G    = G F∘ p
  precompose .F₁ θ    = θ ◂ p
  precompose .F-id    = Nat-path λ _  refl
  precompose .F-∘ f g = Nat-path λ _  refl

  postcompose : Functor Cat[ D , C ] Cat[ D , C' ]
  postcompose .F₀ G    = p F∘ G
  postcompose .F₁ θ    = p ▸ θ
  postcompose .F-id    = Nat-path λ _  p .F-id
  postcompose .F-∘ f g = Nat-path λ _  p .F-∘ _ _

Whiskerings are instances of a more general form of composition for natural transformations, known as horizontal composition.

__ :  {F G : Functor D E} {H K : Functor C D}
     F => G  H => K  F F∘ H => G F∘ K
__ {E = E} {F = F} {G} {H} {K} α β = nat module horizontal-comp where
  private module E = Cat.Reasoning E
  open Fr
  nat : F F∘ H => G F∘ K
  nat .η x = G .F₁ (β .η _) E.∘ α .η _
  nat .is-natural x y f =
    E.pullr (α .is-natural _ _ _)
    ∙ E.extendl (weave G (β .is-natural _ _ _))