module Cat.Functor.Adjoint.Conservative where
Conservative adjoint functors🔗
This short note proves that a right adjoint from a finitely complete category is conservative if and only if the counit of the adjunction is a componentwise strong epimorphism. This is a particularly useful result, as helps us satisfy one of the hypotheses of the crude monadicity theorem.
module _
{oc ℓc od ℓd}
{C : Precategory oc ℓc}
{D : Precategory od ℓd}
{L : Functor C D} {R : Functor D C}
(L⊣R : L ⊣ R)
where
private
module C = Cat.Reasoning C
module D where
open Cat.Reasoning D public
open Cat.Morphism.Strong.Epi D public
module L = Cat.Functor.Reasoning L
module R = Cat.Functor.Reasoning R
open _⊣_ L⊣R
For the forward direction, suppose that is finitely complete, and is conservative; we need to show that is a strong epi. Because is finitely complete, it suffices to prove that is an extremal epi. Let be a factorization of with monic; we now need to show that is invertible. However, is conservative, so it is sufficient to show that is invertible.
We will do this by showing that is monic and has a section. The former is immediate, as right adjoints preserve monos. The latter will require a bit more mork, but only just: the adjunct of is a suitable candidate, and a quick calculation verifies that it is indeed a section.
right-conservative→counit-strong-epi: Finitely-complete D
→ is-conservative R
→ ∀ {x} → D.is-strong-epi (ε x)
=
right-conservative→counit-strong-epi D-fc R-cons .is-extremal-epi→is-strong-epi D-fc λ m f ε=mf →
D
R-cons $.has-section+monic→invertible
C(C.make-section (L-adjunct L⊣R f) (R.pulll (sym ε=mf) ∙ zag))
(right-adjoint→preserves-monos R L⊣R (D.monic m))
On to the reverse direction. Suppose that the counit is a strong epi, and let such that is invertible; our goal is to show that is invertible. We shall do this by showing that is both a mono and a strong epi.
counit-strong-epi→right-conservative: (∀ {x} → D.is-strong-epi (ε x))
→ is-conservative R
{x} {y} {f} Rf-inv =
counit-strong-epi→right-conservative ε-strong-epi .strong-epi+mono→invertible
D
f-strong-epi
f-monicwhere
The case where is monic is the easier of the two. Let such that our aim is to show that By our assumptions, is a strong epi (and thus an epi), so it suffices to show that By naturality, this is equivalent to showing that Finally, is invertible, so it must be monic: this means that it suffices to show that which follows directly from our hypothesis that
: D.is-monic f
f-monic =
f-monic g h fg=fh .fst g h $
ε-strong-epi .viewl $
counit.₁ $
ap L.invertible→monic Rf-inv (R.F₁ g) (R.F₁ h) (R.weave fg=fh) C
Luckily, proving that is a strong epi is not that much harder. Strong epis have a left-cancellation property, so it is sufficient to show that is a strong epi. By naturality, this is equivalent to showing that is a strong epi. Strong epis compose, and is a strong epi by our assumptions, so all that remains is to show that is a strong epi. This is immediate: is invertible, and invertible maps are strong epis.
: D.is-strong-epi f
f-strong-epi =
f-strong-epi .strong-epi-cancelr f (ε x) $
D.subst-is-strong-epi (counit.is-natural x y f) $
D.strong-epi-∘ (ε y) (L.₁ (R.₁ f))
D
ε-strong-epi(D.invertible→strong-epi (L.F-map-invertible Rf-inv))