module Cat.Functor.Properties.FullyFaithful
{oc od ℓc ℓd} {C : Precategory oc ℓc} {D : Precategory od ℓd}
(F : Functor C D) (ff : is-fully-faithful F)
where
Properties of fully faithful functors🔗
This module collects various properties of fully faithful functors.
Interaction with composition functors🔗
If is fully faithful, then we can “unwhisker” any natural transformation to a natural transformation whose whiskering with on the left is This implies that the postcomposition functor is fully faithful.
module _ {oe ℓe} {E : Precategory oe ℓe} where
: ∀ {G H : Functor E C} → F F∘ G => F F∘ H → G => H
unwhisker .η d = F.from (θ .η d)
unwhisker θ .is-natural x y f = sym (F.ε-twist (sym (θ .is-natural x y f)))
unwhisker θ
: is-fully-faithful (postcompose F {D = E})
ff→postcompose-ff = is-iso→is-equiv $ iso unwhisker
ff→postcompose-ff (λ _ → ext λ d → F.ε _) (λ _ → ext λ d → F.η _)
Fully faithful functors reflect (co)limits🔗
Fully faithful functors reflect both left and right Kan extensions, hence in particular limits and colimits. Thinking of such functors as full subcategory inclusions, this means that, if a (co)cone entirely contained within the subcategory is universal in the whole category, then it is also universal in the subcategory. The converse is not true: fully faithful functors do not preserve Kan extensions in general.
ff→reflects-lan: ∀ {p : Functor J U} {G : Functor J C} {H : Functor U C} {eta : G => H F∘ p}
→ (lan : is-lan p (F F∘ G) (F F∘ H) (nat-assoc-to (F ▸ eta)))
→ reflects-lan F lan
.σ eta = unwhisker (lan .σ (nat-assoc-to (F ▸ eta)))
ff→reflects-lan lan .σ-comm = ext λ j → F.whackl (lan .σ-comm ηₚ j)
ff→reflects-lan lan .σ-uniq {σ' = σ'} com = ext λ u → sym $ F.adjunctl $ sym $
ff→reflects-lan lan .σ-uniq {σ' = F ▸ σ'} (ext λ j → F.expand (com ηₚ j)) ηₚ u
lan
ff→reflects-ran: ∀ {p : Functor J U} {G : Functor J C} {H : Functor U C} {eps : H F∘ p => G}
→ (ran : is-ran p (F F∘ G) (F F∘ H) (nat-assoc-from (F ▸ eps)))
→ reflects-ran F ran
.σ eps = unwhisker (ran .σ (nat-assoc-from (F ▸ eps)))
ff→reflects-ran ran .σ-comm = ext λ j → F.whackr (ran .σ-comm ηₚ j)
ff→reflects-ran ran .σ-uniq {σ' = σ'} com = ext λ u → sym $ F.adjunctl $ sym $
ff→reflects-ran ran .σ-uniq {σ' = F ▸ σ'} (ext λ j → F.expand (com ηₚ j)) ηₚ u ran
: reflects-limit F G
ff→reflects-limit = ff→reflects-ran
ff→reflects-limit
: reflects-colimit F G
ff→reflects-colimit = ff→reflects-lan ff→reflects-colimit
We prove the following convenience lemma: given a Limit
of
whose apex is isomorphic to
for some object
we can lift it to a Limit
of
(and similarly for Colimit
s).
ff→reflects-Limit: (Lim : Limit (F F∘ G))
→ ∀ {o} → apex Lim D.≅ F.₀ o
→ Limit G
{o} is = to-limit (ff→reflects-limit lim) where
ff→reflects-Limit Lim : F F∘ !Const o F∘ !F => F F∘ G
eps' = nat-unassoc-from
eps' (Lim .eps ∘nt (!constⁿ (is .D.from) ◂ !F))
: is-ran !F (F F∘ G) (F F∘ !Const o) (nat-assoc-from (F ▸ unwhisker eps'))
lim = natural-isos→is-ran idni idni
lim (!const-isoⁿ is)
(ext λ j → D.idl _ ·· (D.refl⟩∘⟨ D.eliml (Lim .Ext .F-id)) ·· sym (F.ε _))
(Lim .has-ran)
ff→reflects-Colimit: (Colim : Colimit (F F∘ G))
→ ∀ {o} → coapex Colim D.≅ F.₀ o
→ Colimit G
{o} is = to-colimit (ff→reflects-colimit colim) where
ff→reflects-Colimit Colim : F F∘ G => F F∘ !Const o F∘ !F
eta' = nat-unassoc-to
eta' ((!constⁿ (is .D.to) ◂ !F) ∘nt Colim .eta)
: is-lan !F (F F∘ G) (F F∘ !Const o) (nat-assoc-to (F ▸ unwhisker eta'))
colim = natural-isos→is-lan idni idni
colim (!const-isoⁿ is)
(ext λ j → (F.eliml refl D.⟩∘⟨ D.idr _) ∙ sym (F.ε _))
(Colim .has-lan)