Documentation

Mathlib.CategoryTheory.Adjunction.Lifting.Right

Adjoint lifting #

This file gives two constructions for building right adjoints: the adjoint triangle theorem and the adjoint lifting theorem.

The adjoint triangle theorem concerns a functor F : B ⥤ A with a right adjoint U such that η_X : X ⟶ UFX is a regular mono. Then for any category C with equalizers of coreflexive pairs, a functor L : C ⥤ B has a right adjoint if (and only if) the composite L ⋙ F does. Note that the condition on F regarding η_X is automatically satisfied in the case when F is a comonadic functor, giving the corollary: isLeftAdjoint_triangle_lift_comonadic, i.e. if F is comonadic, C has coreflexive equalizers then L : C ⥤ B has a right adjoint provided L ⋙ F does.

The adjoint lifting theorem says that given a commutative square of functors (up to isomorphism):

      Q
    A → B
  U ↓   ↓ V
    C → D
      L

where V is comonadic, U has a right adjoint, and A has coreflexive equalizers, then if L has a right adjoint then Q has a right adjoint.

Implementation #

It is more convenient to prove this theorem by assuming we are given the explicit adjunction rather than just a functor known to be a right adjoint. In docstrings, we write (η, ε) for the unit and counit of the adjunction adj₁ : F ⊣ U and (ι, δ) for the unit and counit of the adjunction adj₂ : L ⋙ F ⊣ U'.

This file has been adapted from Mathlib.CategoryTheory.Adjunction.Lifting.Left. Please try to keep them in sync.

TODO #

References #

To show that η_X is an equalizer for (UFη_X, η_UFX), it suffices to assume it's always an equalizer of something (i.e. a regular mono).

Equations
  • One or more equations did not get rendered due to their size.
Instances For
    def CategoryTheory.LiftRightAdjoint.otherMap {A : Type u₁} {B : Type u₂} {C : Type u₃} [CategoryTheory.Category.{v₁, u₁} A] [CategoryTheory.Category.{v₂, u₂} B] [CategoryTheory.Category.{v₃, u₃} C] {U : CategoryTheory.Functor A B} {F : CategoryTheory.Functor B A} (L : CategoryTheory.Functor C B) (U' : CategoryTheory.Functor A C) (adj₁ : F U) (adj₂ : L.comp F U') (X : B) :
    U'.obj (F.obj X) U'.obj (F.obj (U.obj (F.obj X)))

    (Implementation) To construct the right adjoint, we use the equalizer of U' F η_X with the composite

    U' F X ⟶ U' F L U' F X ⟶ U' F U F L U' F X ⟶ U' F U F X

    where the first morphism is ι_U'FX, the second is U' F η_LU'FX and the third is U' F U δ_FX. We will show that this equalizer exists and that it forms the object map for a right adjoint to L.

    Equations
    • One or more equations did not get rendered due to their size.
    Instances For

      (U'Fη_X, otherMap X) is a coreflexive pair: in particular if C has coreflexive equalizers then this pair has an equalizer.

      Equations
      • =

      Construct the object part of the desired right adjoint as the equalizer of U'Fη_Y with otherMap.

      Equations
      • One or more equations did not get rendered due to their size.
      Instances For

        The homset equivalence which helps show that L is a left adjoint.

        Equations
        • One or more equations did not get rendered due to their size.
        Instances For

          Construct the right adjoint to L, with object map constructRightAdjointObj.

          Equations
          • One or more equations did not get rendered due to their size.
          Instances For

            The adjoint triangle theorem: Suppose U : A ⥤ B has a left adjoint F such that each unit η_X : X ⟶ UFX is a regular monomorphism. Then if a category C has equalizers of coreflexive pairs, then a functor L : C ⥤ B has a right adjoint if the composite L ⋙ F does.

            Note the converse is true (with weaker assumptions), by Adjunction.comp. See https://ncatlab.org/nlab/show/adjoint+triangle+theorem

            If L ⋙ F has a right adjoint, the domain of L has coreflexive equalizers and F is a comonadic functor, then L has a right adjoint. This is a special case of isLeftAdjoint_triangle_lift which is often more useful in practice.

            Suppose we have a commutative square of functors

                  Q
                A → B
              U ↓   ↓ V
                C → D
                  R
            

            where U has a right adjoint, A has coreflexive equalizers and V has a right adjoint such that each component of the counit is a regular mono. Then Q has a right adjoint if L has a right adjoint.

            See https://ncatlab.org/nlab/show/adjoint+lifting+theorem

            Suppose we have a commutative square of functors

                  Q
                A → B
              U ↓   ↓ V
                C → D
                  R
            

            where U has a right adjoint, A has reflexive equalizers and V is comonadic. Then Q has a right adjoint if L has a right adjoint.

            See https://ncatlab.org/nlab/show/adjoint+lifting+theorem