Documentation

Mathlib.CategoryTheory.Bicategory.Extension

Extensions and lifts in bicategories #

We introduce the concept of extensions and lifts within the bicategorical framework. These concepts are defined by commutative diagrams in the (1-)categorical context. Within the bicategorical framework, commutative diagrams are replaced by 2-morphisms. Depending on the orientation of the 2-morphisms, we define both left and right extensions (likewise for lifts). The use of left and right here is a common one in the theory of Kan extensions.

Implementation notes #

We define extensions and lifts as objects in certain comma categories (StructuredArrow for left, and CostructuredArrow for right). See the file CategoryTheory.StructuredArrow for properties about these categories. We introduce some intuitive aliases. For example, LeftExtension.extension is an alias for Comma.right.

References #

@[reducible, inline]
abbrev CategoryTheory.Bicategory.LeftExtension {B : Type u} [Bicategory B] {a b c : B} (f : a b) (g : a c) :
Type (max v w)

Triangle diagrams for (left) extensions.

  b
  △ \
  |   \ extension  △
f |     \          | unit
  |       ◿
  a - - - ▷ c
      g
Equations
Instances For
    @[reducible, inline]
    abbrev CategoryTheory.Bicategory.LeftExtension.extension {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} (t : LeftExtension f g) :

    The extension of g along f.

    Equations
    Instances For
      @[reducible, inline]

      The 2-morphism filling the triangle diagram.

      Equations
      Instances For
        @[reducible, inline]
        abbrev CategoryTheory.Bicategory.LeftExtension.mk {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} (h : b c) (unit : g CategoryStruct.comp f h) :

        Construct a left extension from a 1-morphism and a 2-morphism.

        Equations
        Instances For
          @[reducible, inline]
          abbrev CategoryTheory.Bicategory.LeftExtension.homMk {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} {s t : LeftExtension f g} (η : s.extension t.extension) (w : CategoryStruct.comp s.unit (whiskerLeft f η) = t.unit := by aesop_cat) :

          To construct a morphism between left extensions, we need a 2-morphism between the extensions, and to check that it is compatible with the units.

          Equations
          Instances For
            @[simp]
            theorem CategoryTheory.Bicategory.LeftExtension.w {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} {s t : LeftExtension f g} (η : s t) :

            Construct a left extension of g : a ⟶ c from a left extension of g ≫ 𝟙 c.

            Equations
            Instances For
              def CategoryTheory.Bicategory.LeftExtension.whisker {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} (t : LeftExtension f g) {x : B} (h : c x) :

              Whisker a 1-morphism to an extension.

                b
                △ \
                |   \ extension  △
              f |     \          | unit
                |       ◿
                a - - - ▷ c - - - ▷ x
                    g         h
              
              Equations
              • One or more equations did not get rendered due to their size.
              Instances For
                @[simp]

                Whiskering a 1-morphism is a functor.

                Equations
                • One or more equations did not get rendered due to their size.
                Instances For
                  @[simp]
                  theorem CategoryTheory.Bicategory.LeftExtension.whiskering_map {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} {x : B} (h : c x) {X✝ Y✝ : LeftExtension f g} (η : X✝ Y✝) :
                  @[simp]
                  theorem CategoryTheory.Bicategory.LeftExtension.whiskering_obj {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} {x : B} (h : c x) (t : LeftExtension f g) :
                  def CategoryTheory.Bicategory.LeftExtension.whiskerHom {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} {s t : LeftExtension f g} (i : s t) {x : B} (h : c x) :

                  Construct a morphism between whiskered extensions.

                  Equations
                  Instances For
                    @[simp]
                    theorem CategoryTheory.Bicategory.LeftExtension.whiskerHom_right {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} {s t : LeftExtension f g} (i : s t) {x : B} (h : c x) :
                    def CategoryTheory.Bicategory.LeftExtension.whiskerIso {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} {s t : LeftExtension f g} (i : s t) {x : B} (h : c x) :

                    Construct an isomorphism between whiskered extensions.

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

                      The isomorphism between left extensions induced by a right unitor.

                      Equations
                      Instances For
                        @[reducible, inline]
                        abbrev CategoryTheory.Bicategory.LeftLift {B : Type u} [Bicategory B] {a b c : B} (f : b a) (g : c a) :
                        Type (max v w)

                        Triangle diagrams for (left) lifts.

                                    b
                                  ◹ |
                           lift /   |      △
                              /     | f    | unit
                            /       ▽
                          c - - - ▷ a
                               g
                        
                        Equations
                        Instances For
                          @[reducible, inline]
                          abbrev CategoryTheory.Bicategory.LeftLift.lift {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} (t : LeftLift f g) :

                          The lift of g along f.

                          Equations
                          Instances For
                            @[reducible, inline]
                            abbrev CategoryTheory.Bicategory.LeftLift.unit {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} (t : LeftLift f g) :

                            The 2-morphism filling the triangle diagram.

                            Equations
                            Instances For
                              @[reducible, inline]
                              abbrev CategoryTheory.Bicategory.LeftLift.mk {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} (h : c b) (unit : g CategoryStruct.comp h f) :

                              Construct a left lift from a 1-morphism and a 2-morphism.

                              Equations
                              Instances For
                                @[reducible, inline]
                                abbrev CategoryTheory.Bicategory.LeftLift.homMk {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {s t : LeftLift f g} (η : s.lift t.lift) (w : CategoryStruct.comp s.unit (whiskerRight η f) = t.unit := by aesop_cat) :

                                To construct a morphism between left lifts, we need a 2-morphism between the lifts, and to check that it is compatible with the units.

                                Equations
                                Instances For
                                  @[simp]
                                  theorem CategoryTheory.Bicategory.LeftLift.w {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {s t : LeftLift f g} (h : s t) :
                                  @[simp]
                                  theorem CategoryTheory.Bicategory.LeftLift.w_assoc {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {s t : LeftLift f g} (h : s t) {Z : c a} (h✝ : CategoryStruct.comp t.right f Z) :

                                  Construct a left lift along g : c ⟶ a from a left lift along 𝟙 c ≫ g.

                                  Equations
                                  Instances For
                                    def CategoryTheory.Bicategory.LeftLift.whisker {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} (t : LeftLift f g) {x : B} (h : x c) :

                                    Whisker a 1-morphism to a lift.

                                                        b
                                                      ◹ |
                                               lift /   |      △
                                                  /     | f    | unit
                                                /       ▽
                                    x - - - ▷ c - - - ▷ a
                                         h         g
                                    
                                    Equations
                                    • One or more equations did not get rendered due to their size.
                                    Instances For
                                      @[simp]
                                      theorem CategoryTheory.Bicategory.LeftLift.whisker_lift {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} (t : LeftLift f g) {x : B} (h : x c) :
                                      @[simp]
                                      theorem CategoryTheory.Bicategory.LeftLift.whisker_unit {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} (t : LeftLift f g) {x : B} (h : x c) :
                                      def CategoryTheory.Bicategory.LeftLift.whiskering {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {x : B} (h : x c) :

                                      Whiskering a 1-morphism is a functor.

                                      Equations
                                      • One or more equations did not get rendered due to their size.
                                      Instances For
                                        @[simp]
                                        theorem CategoryTheory.Bicategory.LeftLift.whiskering_map {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {x : B} (h : x c) {X✝ Y✝ : LeftLift f g} (η : X✝ Y✝) :
                                        @[simp]
                                        theorem CategoryTheory.Bicategory.LeftLift.whiskering_obj {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {x : B} (h : x c) (t : LeftLift f g) :

                                        Define a morphism between left lifts by cancelling the whiskered identities.

                                        Equations
                                        Instances For
                                          def CategoryTheory.Bicategory.LeftLift.whiskerHom {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {s t : LeftLift f g} (i : s t) {x : B} (h : x c) :

                                          Construct a morphism between whiskered lifts.

                                          Equations
                                          Instances For
                                            @[simp]
                                            theorem CategoryTheory.Bicategory.LeftLift.whiskerHom_right {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {s t : LeftLift f g} (i : s t) {x : B} (h : x c) :
                                            def CategoryTheory.Bicategory.LeftLift.whiskerIso {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {s t : LeftLift f g} (i : s t) {x : B} (h : x c) :

                                            Construct an isomorphism between whiskered lifts.

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

                                              The isomorphism between left lifts induced by a left unitor.

                                              Equations
                                              Instances For
                                                @[reducible, inline]
                                                abbrev CategoryTheory.Bicategory.RightExtension {B : Type u} [Bicategory B] {a b c : B} (f : a b) (g : a c) :
                                                Type (max v w)

                                                Triangle diagrams for (right) extensions.

                                                  b
                                                  △ \
                                                  |   \ extension  | counit
                                                f |     \          ▽
                                                  |       ◿
                                                  a - - - ▷ c
                                                      g
                                                
                                                Equations
                                                Instances For
                                                  @[reducible, inline]
                                                  abbrev CategoryTheory.Bicategory.RightExtension.extension {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} (t : RightExtension f g) :

                                                  The extension of g along f.

                                                  Equations
                                                  Instances For
                                                    @[reducible, inline]

                                                    The 2-morphism filling the triangle diagram.

                                                    Equations
                                                    Instances For
                                                      @[reducible, inline]
                                                      abbrev CategoryTheory.Bicategory.RightExtension.mk {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} (h : b c) (counit : CategoryStruct.comp f h g) :

                                                      Construct a right extension from a 1-morphism and a 2-morphism.

                                                      Equations
                                                      Instances For
                                                        @[reducible, inline]

                                                        To construct a morphism between right extensions, we need a 2-morphism between the extensions, and to check that it is compatible with the counits.

                                                        Equations
                                                        Instances For
                                                          @[simp]
                                                          theorem CategoryTheory.Bicategory.RightExtension.w {B : Type u} [Bicategory B] {a b c : B} {f : a b} {g : a c} {s t : RightExtension f g} (η : s t) :
                                                          @[reducible, inline]
                                                          abbrev CategoryTheory.Bicategory.RightLift {B : Type u} [Bicategory B] {a b c : B} (f : b a) (g : c a) :
                                                          Type (max v w)

                                                          Triangle diagrams for (right) lifts.

                                                                      b
                                                                    ◹ |
                                                             lift /   |      | counit
                                                                /     | f    ▽
                                                              /       ▽
                                                            c - - - ▷ a
                                                                 g
                                                          
                                                          Equations
                                                          Instances For
                                                            @[reducible, inline]
                                                            abbrev CategoryTheory.Bicategory.RightLift.lift {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} (t : RightLift f g) :

                                                            The lift of g along f.

                                                            Equations
                                                            Instances For
                                                              @[reducible, inline]
                                                              abbrev CategoryTheory.Bicategory.RightLift.counit {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} (t : RightLift f g) :

                                                              The 2-morphism filling the triangle diagram.

                                                              Equations
                                                              Instances For
                                                                @[reducible, inline]
                                                                abbrev CategoryTheory.Bicategory.RightLift.mk {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} (h : c b) (counit : CategoryStruct.comp h f g) :

                                                                Construct a right lift from a 1-morphism and a 2-morphism.

                                                                Equations
                                                                Instances For
                                                                  @[reducible, inline]
                                                                  abbrev CategoryTheory.Bicategory.RightLift.homMk {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {s t : RightLift f g} (η : s.lift t.lift) (w : CategoryStruct.comp (whiskerRight η f) t.counit = s.counit) :

                                                                  To construct a morphism between right lifts, we need a 2-morphism between the lifts, and to check that it is compatible with the counits.

                                                                  Equations
                                                                  Instances For
                                                                    @[simp]
                                                                    theorem CategoryTheory.Bicategory.RightLift.w {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {s t : RightLift f g} (h : s t) :
                                                                    @[simp]
                                                                    theorem CategoryTheory.Bicategory.RightLift.w_assoc {B : Type u} [Bicategory B] {a b c : B} {f : b a} {g : c a} {s t : RightLift f g} (h : s t) {Z : c a} (h✝ : g Z) :