module Cat.Functor.Compose where
Functoriality of functor composition🔗
When the operation of functor composition, , 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 ;
- The precomposition functor associated with any
,
which will be denoted
in TeX and
precompose
in Agda; - The postcomposition functor associated with any
,
which will be denoted
;
In the code, that’s
postcompose
.
Note that the precomposition functor is necessarily “contravariant” when compared with , in that it points in the opposite direction to .
: Functor (Cat[ B , C ] ×ᶜ Cat[ A , B ]) Cat[ A , C ]
F∘-functor {C = C} = go module F∘-f where
F∘-functor private module C = Cat.Reasoning C
: 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 =
go (W .F₁ (n2 .η _) C.∘ n1 .η _) C.∘ F .F₁ (G .F₁ f) ≡⟨ C.pullr (n1 .is-natural _ _ _) ⟩
.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 .η _ ∎
W where module W = Fr W
.F-id {x} = Nat-path λ _ → C.idr _ ∙ x .fst .F-id
go .F-∘ {x} {y , _} {z , _} (f , _) (g , _) = Nat-path λ _ →
go .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 (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.) , the is unchanging: this expression has type , as long as .
_◂_ : 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 =
(H .F-∘ _ _) ∙ ap (H .F₁) (nt .is-natural _ _ _) ∙ H .F-∘ _ _ sym
With the whiskerings already defined, defining and is easy:
module _ (p : Functor C C') where
: 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
precompose
: 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-∘ _ _ postcompose
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
: F F∘ H => G F∘ K
nat .η x = G .F₁ (β .η _) E.∘ α .η _
nat .is-natural x y f =
nat .pullr (α .is-natural _ _ _)
E.extendl (weave G (β .is-natural _ _ _)) ∙ E