Built with Alectryon. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑Ctrl+↓ to navigate, Ctrl+🖱️ to focus. On Mac, use ⌘ instead of Ctrl.
(** * Functoriality of the construction of adjunctions from universal morphisms *)Require Import Category.Core Functor.Core NaturalTransformation.Core.Require Import Functor.Identity Functor.Composition.Core.Require Import NaturalTransformation.Composition.Core NaturalTransformation.Composition.Laws.Require Import Functor.Dual NaturalTransformation.Dual.Require Import Adjoint.Core Adjoint.UnitCounit Adjoint.Dual.Set Implicit Arguments.Generalizable All Variables.LocalOpen Scope natural_transformation_scope.LocalOpen Scope morphism_scope.Sectionleft.(** ** action on morphisms of the construction of a left adjoint to [G] *)(** *** functoriality on [C], [D], and [G] *)Sectionalso_categories.VariablesCC' : PreCategory.VariableCF : Functor C C'.VariablesDD' : PreCategory.VariableDF : Functor D D'.VariableG : Functor D C.VariableF : Functor C D.VariableA : F -| G.VariableG' : Functor D' C'.VariableF' : Functor C' D'.VariableA' : F' -| G'.VariableT : NaturalTransformation (CF o G) (G' o DF).
C, C': PreCategory CF: Functor C C' D, D': PreCategory DF: Functor D D' G: Functor D C F: Functor C D A: F -| G G': Functor D' C' F': Functor C' D' A': F' -| G' T: NaturalTransformation (CF o G) (G' o DF)
NaturalTransformation (F' o CF) (DF o F)
C, C': PreCategory CF: Functor C C' D, D': PreCategory DF: Functor D D' G: Functor D C F: Functor C D A: F -| G G': Functor D' C' F': Functor C' D' A': F' -| G' T: NaturalTransformation (CF o G) (G' o DF)
NaturalTransformation (F' o CF) (DF o F)
refine ((_)
o (counit A' oR (DF o F))
o _
o (F'
oL ((T oR F)
o _
o (CF oL unit A)
o _)))%natural_transformation;
nt_solve_associator.Defined.Endalso_categories.(** *** functoriality in [G] *)Sectiononly_functor.VariablesCD : PreCategory.VariableG : Functor D C.VariableF : Functor C D.VariableA : F -| G.VariableG' : Functor D C.VariableF' : Functor C D.VariableA' : F' -| G'.VariableT : NaturalTransformation G G'.
C, D: PreCategory G: Functor D C F: Functor C D A: F -| G G': Functor D C F': Functor C D A': F' -| G' T: NaturalTransformation G G'
NaturalTransformation F' F
C, D: PreCategory G: Functor D C F: Functor C D A: F -| G G': Functor D C F': Functor C D A': F' -| G' T: NaturalTransformation G G'
NaturalTransformation F' F
refine (_ o (@left_morphism_of C C 1 D D 1 G F A G' F' A' (_ o T o _)) o _)%natural_transformation;
nt_solve_associator.Defined.Endonly_functor.Endleft.Sectionright.(** ** action on morphisms of the construction of a right adjoint to [F] *)Definitionright_morphism_ofCC'CFDD'DF
(F : Functor C D) (G : Functor D C) (A : F -| G)
(F' : Functor C' D') (G' : Functor D' C') (A' : F' -| G')
(T : NaturalTransformation (F' o CF) (DF o F))
: NaturalTransformation (CF o G) (G' o DF)
:= (@left_morphism_of _ _ DF^op _ _ CF^op F^op G^op A^op F'^op G'^op A'^op T^op)^op.Definitionright_morphism_of_nondepCD
(F : Functor C D) (G : Functor D C) (A : F -| G)
(F' : Functor C D) (G' : Functor D C) (A' : F' -| G')
(T : NaturalTransformation F' F)
: NaturalTransformation G G'
:= (@left_morphism_of_nondep _ _ F^op G^op A^op F'^op G'^op A'^op T^op)^op.Endright.