module Cat.Bi.Diagram.Adjunction where
open _=>_ module _ {o β β'} (B : Prebicategory o β β') where private module B = Prebicategory B
Adjunctions in a bicategoryπ
Let be a bicategory, be objects, and and be 1-cells. Generalising the situation where and are functors, we say they are adjoints if there exist 2-cells and (the unit and counit respectively), satisfying the equations
and
called the triangle identities (because of their shape) or zigzag identities (because it sounds cool). Note that we have to insert appropriate associators and unitors in order to translate the diagrams above into equations that are well-typed in a (weak) bicategory.
record _β£_ {a b : B.Ob} (f : a B.β¦ b) (g : b B.β¦ a) : Type β' where field Ξ· : B.id B.β (g B.β f) Ξ΅ : (f B.β g) B.β B.id zig : B.Hom.id β‘ B.Ξ»β f B.β (Ξ΅ B.β f) B.β B.Ξ±β f g f B.β (f B.βΆ Ξ·) B.β B.Οβ f zag : B.Hom.id β‘ B.Οβ g B.β (g B.βΆ Ξ΅) B.β B.Ξ±β g f g B.β (Ξ· B.β g) B.β B.Ξ»β g
This means the triangle identities, rather than simply expressing a compatibility relation between and as is the case for adjoint functors, instead exhibit a complicated compatibility relation between and the structural isomorphisms (the unitors and associator) of the ambient bicategory.