Documentation

Mathlib.CategoryTheory.Limits.Shapes.WideEqualizers

Wide equalizers and wide coequalizers #

This file defines wide (co)equalizers as special cases of (co)limits.

A wide equalizer for the family of morphisms X ⟶ Y indexed by J is the categorical generalization of the subobject {a ∈ A | ∀ j₁ j₂, f(j₁, a) = f(j₂, a)}. Note that if J has fewer than two morphisms this condition is trivial, so some lemmas and definitions assume J is nonempty.

Main definitions #

Each of these has a dual.

Main statements #

Implementation notes #

As with the other special shapes in the limits library, all the definitions here are given as abbreviations of the general statements for limits, so all the simp lemmas and theorems about general limits can be used.

References #

The type of objects for the diagram indexing a wide (co)equalizer.

Instances For

    The type family of morphisms for the diagram indexing a wide (co)equalizer.

    Instances For
      instance CategoryTheory.Limits.WalkingParallelFamily.instDecidableEqHom {J✝ : Type u_1} {a✝ a✝¹ : WalkingParallelFamily J✝} [DecidableEq J✝] :
      DecidableEq (Hom J✝ a✝ a✝¹)
      Equations

        Composition of morphisms in the indexing diagram for wide (co)equalizers.

        Equations
          Instances For

            Arrow (WalkingParallelFamily J) identifies to the type obtained by adding two elements to T.

            Equations
              Instances For
                def CategoryTheory.Limits.parallelFamily {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) :

                parallelFamily f is the diagram in C consisting of the given family of morphisms, each with common domain and codomain.

                Equations
                  Instances For
                    @[simp]
                    theorem CategoryTheory.Limits.parallelFamily_map_left {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) {j : J} :

                    Every functor indexing a wide (co)equalizer is naturally isomorphic (actually, equal) to a parallelFamily

                    Equations
                      Instances For

                        WalkingParallelPair as a category is equivalent to a special case of WalkingParallelFamily.

                        Equations
                          Instances For
                            @[reducible, inline]
                            abbrev CategoryTheory.Limits.Trident {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) :
                            Type (max (max w u) v)

                            A trident on f is just a Cone (parallelFamily f).

                            Equations
                              Instances For
                                @[reducible, inline]
                                abbrev CategoryTheory.Limits.Cotrident {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) :
                                Type (max (max w u) v)

                                A cotrident on f and g is just a Cocone (parallelFamily f).

                                Equations
                                  Instances For
                                    @[reducible, inline]

                                    A trident t on the parallel family f : J → (X ⟶ Y) consists of two morphisms t.π.app zero : t.X ⟶ X and t.π.app one : t.X ⟶ Y. Of these, only the first one is interesting, and we give it the shorter name Trident.ι t.

                                    Equations
                                      Instances For
                                        @[reducible, inline]

                                        A cotrident t on the parallel family f : J → (X ⟶ Y) consists of two morphisms t.ι.app zero : X ⟶ t.X and t.ι.app one : Y ⟶ t.X. Of these, only the second one is interesting, and we give it the shorter name Cotrident.π t.

                                        Equations
                                          Instances For
                                            @[simp]
                                            theorem CategoryTheory.Limits.Trident.ι_eq_app_zero {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} (t : Trident f) :
                                            @[simp]
                                            theorem CategoryTheory.Limits.Cotrident.π_eq_app_one {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} (t : Cotrident f) :
                                            @[simp]
                                            def CategoryTheory.Limits.Trident.ofι {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {P : C} (ι : P X) (w : ∀ (j₁ j₂ : J), CategoryStruct.comp ι (f j₁) = CategoryStruct.comp ι (f j₂)) :

                                            A trident on f : J → (X ⟶ Y) is determined by the morphism ι : P ⟶ X satisfying ∀ j₁ j₂, ι ≫ f j₁ = ι ≫ f j₂.

                                            Equations
                                              Instances For
                                                @[simp]
                                                theorem CategoryTheory.Limits.Trident.ofι_pt {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {P : C} (ι : P X) (w : ∀ (j₁ j₂ : J), CategoryStruct.comp ι (f j₁) = CategoryStruct.comp ι (f j₂)) :
                                                (ofι ι w).pt = P
                                                @[simp]
                                                theorem CategoryTheory.Limits.Trident.ofι_π_app {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {P : C} (ι : P X) (w : ∀ (j₁ j₂ : J), CategoryStruct.comp ι (f j₁) = CategoryStruct.comp ι (f j₂)) (X✝ : WalkingParallelFamily J) :
                                                def CategoryTheory.Limits.Cotrident.ofπ {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {P : C} (π : Y P) (w : ∀ (j₁ j₂ : J), CategoryStruct.comp (f j₁) π = CategoryStruct.comp (f j₂) π) :

                                                A cotrident on f : J → (X ⟶ Y) is determined by the morphism π : Y ⟶ P satisfying ∀ j₁ j₂, f j₁ ≫ π = f j₂ ≫ π.

                                                Equations
                                                  Instances For
                                                    @[simp]
                                                    theorem CategoryTheory.Limits.Cotrident.ofπ_ι_app {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {P : C} (π : Y P) (w : ∀ (j₁ j₂ : J), CategoryStruct.comp (f j₁) π = CategoryStruct.comp (f j₂) π) (X✝ : WalkingParallelFamily J) :
                                                    @[simp]
                                                    theorem CategoryTheory.Limits.Cotrident.ofπ_pt {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {P : C} (π : Y P) (w : ∀ (j₁ j₂ : J), CategoryStruct.comp (f j₁) π = CategoryStruct.comp (f j₂) π) :
                                                    (ofπ π w).pt = P
                                                    theorem CategoryTheory.Limits.Trident.ι_ofι {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {P : C} (ι : P X) (w : ∀ (j₁ j₂ : J), CategoryStruct.comp ι (f j₁) = CategoryStruct.comp ι (f j₂)) :
                                                    (ofι ι w).ι = ι
                                                    theorem CategoryTheory.Limits.Cotrident.π_ofπ {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {P : C} (π : Y P) (w : ∀ (j₁ j₂ : J), CategoryStruct.comp (f j₁) π = CategoryStruct.comp (f j₂) π) :
                                                    (ofπ π w).π = π
                                                    theorem CategoryTheory.Limits.Trident.condition {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} (j₁ j₂ : J) (t : Trident f) :
                                                    theorem CategoryTheory.Limits.Trident.condition_assoc {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} (j₁ j₂ : J) (t : Trident f) {Z : C} (h : Y Z) :
                                                    theorem CategoryTheory.Limits.Cotrident.condition {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} (j₁ j₂ : J) (t : Cotrident f) :
                                                    theorem CategoryTheory.Limits.Trident.equalizer_ext {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] (s : Trident f) {W : C} {k l : W s.pt} (h : CategoryStruct.comp k s.ι = CategoryStruct.comp l s.ι) (j : WalkingParallelFamily J) :

                                                    To check whether two maps are equalized by both maps of a trident, it suffices to check it for the first map

                                                    theorem CategoryTheory.Limits.Cotrident.coequalizer_ext {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] (s : Cotrident f) {W : C} {k l : s.pt W} (h : CategoryStruct.comp s.π k = CategoryStruct.comp s.π l) (j : WalkingParallelFamily J) :

                                                    To check whether two maps are coequalized by both maps of a cotrident, it suffices to check it for the second map

                                                    theorem CategoryTheory.Limits.Trident.IsLimit.hom_ext {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s : Trident f} (hs : IsLimit s) {W : C} {k l : W s.pt} (h : CategoryStruct.comp k s.ι = CategoryStruct.comp l s.ι) :
                                                    k = l
                                                    theorem CategoryTheory.Limits.Cotrident.IsColimit.hom_ext {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s : Cotrident f} (hs : IsColimit s) {W : C} {k l : s.pt W} (h : CategoryStruct.comp s.π k = CategoryStruct.comp s.π l) :
                                                    k = l
                                                    def CategoryTheory.Limits.Trident.IsLimit.lift' {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s : Trident f} (hs : IsLimit s) {W : C} (k : W X) (h : ∀ (j₁ j₂ : J), CategoryStruct.comp k (f j₁) = CategoryStruct.comp k (f j₂)) :

                                                    If s is a limit trident over f, then a morphism k : W ⟶ X satisfying ∀ j₁ j₂, k ≫ f j₁ = k ≫ f j₂ induces a morphism l : W ⟶ s.X such that l ≫ Trident.ι s = k.

                                                    Equations
                                                      Instances For
                                                        def CategoryTheory.Limits.Cotrident.IsColimit.desc' {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s : Cotrident f} (hs : IsColimit s) {W : C} (k : Y W) (h : ∀ (j₁ j₂ : J), CategoryStruct.comp (f j₁) k = CategoryStruct.comp (f j₂) k) :

                                                        If s is a colimit cotrident over f, then a morphism k : Y ⟶ W satisfying ∀ j₁ j₂, f j₁ ≫ k = f j₂ ≫ k induces a morphism l : s.X ⟶ W such that Cotrident.π s ≫ l = k.

                                                        Equations
                                                          Instances For
                                                            def CategoryTheory.Limits.Trident.IsLimit.mk {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] (t : Trident f) (lift : (s : Trident f) → s.pt t.pt) (fac : ∀ (s : Trident f), CategoryStruct.comp (lift s) t.ι = s.ι) (uniq : ∀ (s : Trident f) (m : s.pt t.pt), (∀ (j : WalkingParallelFamily J), CategoryStruct.comp m (t.π.app j) = s.π.app j)m = lift s) :

                                                            This is a slightly more convenient method to verify that a trident is a limit cone. It only asks for a proof of facts that carry any mathematical content

                                                            Equations
                                                              Instances For

                                                                This is another convenient method to verify that a trident is a limit cone. It only asks for a proof of facts that carry any mathematical content, and allows access to the same s for all parts.

                                                                Equations
                                                                  Instances For
                                                                    def CategoryTheory.Limits.Cotrident.IsColimit.mk {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] (t : Cotrident f) (desc : (s : Cotrident f) → t.pt s.pt) (fac : ∀ (s : Cotrident f), CategoryStruct.comp t.π (desc s) = s.π) (uniq : ∀ (s : Cotrident f) (m : t.pt s.pt), (∀ (j : WalkingParallelFamily J), CategoryStruct.comp (t.ι.app j) m = s.ι.app j)m = desc s) :

                                                                    This is a slightly more convenient method to verify that a cotrident is a colimit cocone. It only asks for a proof of facts that carry any mathematical content

                                                                    Equations
                                                                      Instances For

                                                                        This is another convenient method to verify that a cotrident is a colimit cocone. It only asks for a proof of facts that carry any mathematical content, and allows access to the same s for all parts.

                                                                        Equations
                                                                          Instances For
                                                                            def CategoryTheory.Limits.Trident.IsLimit.homIso {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {t : Trident f} (ht : IsLimit t) (Z : C) :
                                                                            (Z t.pt) { h : Z X // ∀ (j₁ j₂ : J), CategoryStruct.comp h (f j₁) = CategoryStruct.comp h (f j₂) }

                                                                            Given a limit cone for the family f : J → (X ⟶ Y), for any Z, morphisms from Z to its point are in bijection with morphisms h : Z ⟶ X such that ∀ j₁ j₂, h ≫ f j₁ = h ≫ f j₂. Further, this bijection is natural in Z: see Trident.Limits.homIso_natural.

                                                                            Equations
                                                                              Instances For
                                                                                @[simp]
                                                                                theorem CategoryTheory.Limits.Trident.IsLimit.homIso_symm_apply {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {t : Trident f} (ht : IsLimit t) (Z : C) (h : { h : Z X // ∀ (j₁ j₂ : J), CategoryStruct.comp h (f j₁) = CategoryStruct.comp h (f j₂) }) :
                                                                                (homIso ht Z).symm h = (lift' ht h )
                                                                                @[simp]
                                                                                theorem CategoryTheory.Limits.Trident.IsLimit.homIso_apply_coe {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {t : Trident f} (ht : IsLimit t) (Z : C) (k : Z t.pt) :
                                                                                ((homIso ht Z) k) = CategoryStruct.comp k t.ι
                                                                                theorem CategoryTheory.Limits.Trident.IsLimit.homIso_natural {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {t : Trident f} (ht : IsLimit t) {Z Z' : C} (q : Z' Z) (k : Z t.pt) :
                                                                                ((homIso ht Z') (CategoryStruct.comp q k)) = CategoryStruct.comp q ((homIso ht Z) k)

                                                                                The bijection of Trident.IsLimit.homIso is natural in Z.

                                                                                def CategoryTheory.Limits.Cotrident.IsColimit.homIso {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {t : Cotrident f} (ht : IsColimit t) (Z : C) :
                                                                                (t.pt Z) { h : Y Z // ∀ (j₁ j₂ : J), CategoryStruct.comp (f j₁) h = CategoryStruct.comp (f j₂) h }

                                                                                Given a colimit cocone for the family f : J → (X ⟶ Y), for any Z, morphisms from the cocone point to Z are in bijection with morphisms h : Z ⟶ X such that ∀ j₁ j₂, f j₁ ≫ h = f j₂ ≫ h. Further, this bijection is natural in Z: see Cotrident.IsColimit.homIso_natural.

                                                                                Equations
                                                                                  Instances For
                                                                                    @[simp]
                                                                                    theorem CategoryTheory.Limits.Cotrident.IsColimit.homIso_symm_apply {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {t : Cotrident f} (ht : IsColimit t) (Z : C) (h : { h : Y Z // ∀ (j₁ j₂ : J), CategoryStruct.comp (f j₁) h = CategoryStruct.comp (f j₂) h }) :
                                                                                    (homIso ht Z).symm h = (desc' ht h )
                                                                                    @[simp]
                                                                                    theorem CategoryTheory.Limits.Cotrident.IsColimit.homIso_apply_coe {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {t : Cotrident f} (ht : IsColimit t) (Z : C) (k : t.pt Z) :
                                                                                    ((homIso ht Z) k) = CategoryStruct.comp t.π k
                                                                                    theorem CategoryTheory.Limits.Cotrident.IsColimit.homIso_natural {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {t : Cotrident f} {Z Z' : C} (q : Z Z') (ht : IsColimit t) (k : t.pt Z) :
                                                                                    ((homIso ht Z') (CategoryStruct.comp k q)) = CategoryStruct.comp (↑((homIso ht Z) k)) q

                                                                                    The bijection of Cotrident.IsColimit.homIso is natural in Z.

                                                                                    This is a helper construction that can be useful when verifying that a category has certain wide equalizers. Given F : WalkingParallelFamily ⥤ C, which is really the same as parallelFamily (fun j ↦ F.map (line j)), and a trident on fun j ↦ F.map (line j), we get a cone on F.

                                                                                    If you're thinking about using this, have a look at hasWideEqualizers_of_hasLimit_parallelFamily, which you may find to be an easier way of achieving your goal.

                                                                                    Equations
                                                                                      Instances For

                                                                                        This is a helper construction that can be useful when verifying that a category has all coequalizers. Given F : WalkingParallelFamily ⥤ C, which is really the same as parallelFamily (fun j ↦ F.map (line j)), and a cotrident on fun j ↦ F.map (line j) we get a cocone on F.

                                                                                        If you're thinking about using this, have a look at hasWideCoequalizers_of_hasColimit_parallelFamily, which you may find to be an easier way of achieving your goal.

                                                                                        Equations
                                                                                          Instances For

                                                                                            Given F : WalkingParallelFamily ⥤ C, which is really the same as parallelFamily (fun j ↦ F.map (line j)) and a cone on F, we get a trident on fun j ↦ F.map (line j).

                                                                                            Equations
                                                                                              Instances For

                                                                                                Given F : WalkingParallelFamily ⥤ C, which is really the same as parallelFamily (F.map left) (F.map right) and a cocone on F, we get a cotrident on fun j ↦ F.map (line j).

                                                                                                Equations
                                                                                                  Instances For
                                                                                                    def CategoryTheory.Limits.Trident.mkHom {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s t : Trident f} (k : s.pt t.pt) (w : CategoryStruct.comp k t.ι = s.ι := by cat_disch) :
                                                                                                    s t

                                                                                                    Helper function for constructing morphisms between wide equalizer tridents.

                                                                                                    Equations
                                                                                                      Instances For
                                                                                                        @[simp]
                                                                                                        theorem CategoryTheory.Limits.Trident.mkHom_hom {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s t : Trident f} (k : s.pt t.pt) (w : CategoryStruct.comp k t.ι = s.ι := by cat_disch) :
                                                                                                        (mkHom k w).hom = k
                                                                                                        def CategoryTheory.Limits.Trident.ext {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s t : Trident f} (i : s.pt t.pt) (w : CategoryStruct.comp i.hom t.ι = s.ι := by cat_disch) :
                                                                                                        s t

                                                                                                        To construct an isomorphism between tridents, it suffices to give an isomorphism between the cone points and check that it commutes with the ι morphisms.

                                                                                                        Equations
                                                                                                          Instances For
                                                                                                            @[simp]
                                                                                                            theorem CategoryTheory.Limits.Trident.ext_inv {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s t : Trident f} (i : s.pt t.pt) (w : CategoryStruct.comp i.hom t.ι = s.ι := by cat_disch) :
                                                                                                            (ext i w).inv = mkHom i.inv
                                                                                                            @[simp]
                                                                                                            theorem CategoryTheory.Limits.Trident.ext_hom {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s t : Trident f} (i : s.pt t.pt) (w : CategoryStruct.comp i.hom t.ι = s.ι := by cat_disch) :
                                                                                                            (ext i w).hom = mkHom i.hom w
                                                                                                            def CategoryTheory.Limits.Cotrident.mkHom {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s t : Cotrident f} (k : s.pt t.pt) (w : CategoryStruct.comp s.π k = t.π := by cat_disch) :
                                                                                                            s t

                                                                                                            Helper function for constructing morphisms between coequalizer cotridents.

                                                                                                            Equations
                                                                                                              Instances For
                                                                                                                @[simp]
                                                                                                                theorem CategoryTheory.Limits.Cotrident.mkHom_hom {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s t : Cotrident f} (k : s.pt t.pt) (w : CategoryStruct.comp s.π k = t.π := by cat_disch) :
                                                                                                                (mkHom k w).hom = k
                                                                                                                def CategoryTheory.Limits.Cotrident.ext {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {s t : Cotrident f} (i : s.pt t.pt) (w : CategoryStruct.comp s.π i.hom = t.π := by cat_disch) :
                                                                                                                s t

                                                                                                                To construct an isomorphism between cotridents, it suffices to give an isomorphism between the cocone points and check that it commutes with the π morphisms.

                                                                                                                Equations
                                                                                                                  Instances For
                                                                                                                    @[reducible, inline]
                                                                                                                    abbrev CategoryTheory.Limits.HasWideEqualizer {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) :

                                                                                                                    HasWideEqualizer f represents a particular choice of limiting cone for the parallel family of morphisms f.

                                                                                                                    Equations
                                                                                                                      Instances For
                                                                                                                        @[reducible, inline]
                                                                                                                        abbrev CategoryTheory.Limits.wideEqualizer {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideEqualizer f] :
                                                                                                                        C

                                                                                                                        If a wide equalizer of f exists, we can access an arbitrary choice of such by saying wideEqualizer f.

                                                                                                                        Equations
                                                                                                                          Instances For
                                                                                                                            @[reducible, inline]
                                                                                                                            abbrev CategoryTheory.Limits.wideEqualizer.ι {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideEqualizer f] :

                                                                                                                            If a wide equalizer of f exists, we can access the inclusion wideEqualizer f ⟶ X by saying wideEqualizer.ι f.

                                                                                                                            Equations
                                                                                                                              Instances For
                                                                                                                                @[reducible, inline]
                                                                                                                                abbrev CategoryTheory.Limits.wideEqualizer.trident {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideEqualizer f] :

                                                                                                                                A wide equalizer cone for a parallel family f.

                                                                                                                                Equations
                                                                                                                                  Instances For
                                                                                                                                    theorem CategoryTheory.Limits.wideEqualizer.trident_ι {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideEqualizer f] :
                                                                                                                                    (trident f).ι = ι f
                                                                                                                                    theorem CategoryTheory.Limits.wideEqualizer.condition {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideEqualizer f] (j₁ j₂ : J) :
                                                                                                                                    CategoryStruct.comp (ι f) (f j₁) = CategoryStruct.comp (ι f) (f j₂)
                                                                                                                                    theorem CategoryTheory.Limits.wideEqualizer.condition_assoc {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideEqualizer f] (j₁ j₂ : J) {Z : C} (h : Y Z) :

                                                                                                                                    The wideEqualizer built from wideEqualizer.ι f is limiting.

                                                                                                                                    Equations
                                                                                                                                      Instances For
                                                                                                                                        @[reducible, inline]
                                                                                                                                        abbrev CategoryTheory.Limits.wideEqualizer.lift {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideEqualizer f] [Nonempty J] {W : C} (k : W X) (h : ∀ (j₁ j₂ : J), CategoryStruct.comp k (f j₁) = CategoryStruct.comp k (f j₂)) :

                                                                                                                                        A morphism k : W ⟶ X satisfying ∀ j₁ j₂, k ≫ f j₁ = k ≫ f j₂ factors through the wide equalizer of f via wideEqualizer.lift : W ⟶ wideEqualizer f.

                                                                                                                                        Equations
                                                                                                                                          Instances For
                                                                                                                                            theorem CategoryTheory.Limits.wideEqualizer.lift_ι {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideEqualizer f] [Nonempty J] {W : C} (k : W X) (h : ∀ (j₁ j₂ : J), CategoryStruct.comp k (f j₁) = CategoryStruct.comp k (f j₂)) :
                                                                                                                                            theorem CategoryTheory.Limits.wideEqualizer.lift_ι_assoc {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideEqualizer f] [Nonempty J] {W : C} (k : W X) (h : ∀ (j₁ j₂ : J), CategoryStruct.comp k (f j₁) = CategoryStruct.comp k (f j₂)) {Z : C} (h✝ : X Z) :
                                                                                                                                            def CategoryTheory.Limits.wideEqualizer.lift' {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideEqualizer f] [Nonempty J] {W : C} (k : W X) (h : ∀ (j₁ j₂ : J), CategoryStruct.comp k (f j₁) = CategoryStruct.comp k (f j₂)) :

                                                                                                                                            A morphism k : W ⟶ X satisfying ∀ j₁ j₂, k ≫ f j₁ = k ≫ f j₂ induces a morphism l : W ⟶ wideEqualizer f satisfying l ≫ wideEqualizer.ι f = k.

                                                                                                                                            Equations
                                                                                                                                              Instances For
                                                                                                                                                theorem CategoryTheory.Limits.wideEqualizer.hom_ext {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideEqualizer f] [Nonempty J] {W : C} {k l : W wideEqualizer f} (h : CategoryStruct.comp k (ι f) = CategoryStruct.comp l (ι f)) :
                                                                                                                                                k = l

                                                                                                                                                Two maps into a wide equalizer are equal if they are equal when composed with the wide equalizer map.

                                                                                                                                                theorem CategoryTheory.Limits.wideEqualizer.hom_ext_iff {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideEqualizer f] [Nonempty J] {W : C} {k l : W wideEqualizer f} :
                                                                                                                                                instance CategoryTheory.Limits.wideEqualizer.ι_mono {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideEqualizer f] [Nonempty J] :
                                                                                                                                                Mono (ι f)

                                                                                                                                                A wide equalizer morphism is a monomorphism

                                                                                                                                                theorem CategoryTheory.Limits.mono_of_isLimit_parallelFamily {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [Nonempty J] {c : Cone (parallelFamily f)} (i : IsLimit c) :

                                                                                                                                                The wide equalizer morphism in any limit cone is a monomorphism.

                                                                                                                                                @[reducible, inline]
                                                                                                                                                abbrev CategoryTheory.Limits.HasWideCoequalizer {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) :

                                                                                                                                                HasWideCoequalizer f g represents a particular choice of colimiting cocone for the parallel family of morphisms f.

                                                                                                                                                Equations
                                                                                                                                                  Instances For
                                                                                                                                                    @[reducible, inline]
                                                                                                                                                    abbrev CategoryTheory.Limits.wideCoequalizer {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideCoequalizer f] :
                                                                                                                                                    C

                                                                                                                                                    If a wide coequalizer of f, we can access an arbitrary choice of such by saying wideCoequalizer f.

                                                                                                                                                    Equations
                                                                                                                                                      Instances For
                                                                                                                                                        @[reducible, inline]
                                                                                                                                                        abbrev CategoryTheory.Limits.wideCoequalizer.π {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideCoequalizer f] :

                                                                                                                                                        If a wideCoequalizer of f exists, we can access the corresponding projection by saying wideCoequalizer.π f.

                                                                                                                                                        Equations
                                                                                                                                                          Instances For
                                                                                                                                                            @[reducible, inline]
                                                                                                                                                            abbrev CategoryTheory.Limits.wideCoequalizer.cotrident {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideCoequalizer f] :

                                                                                                                                                            An arbitrary choice of coequalizer cocone for a parallel family f.

                                                                                                                                                            Equations
                                                                                                                                                              Instances For
                                                                                                                                                                theorem CategoryTheory.Limits.wideCoequalizer.cotrident_π {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideCoequalizer f] :
                                                                                                                                                                theorem CategoryTheory.Limits.wideCoequalizer.condition {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideCoequalizer f] (j₁ j₂ : J) :
                                                                                                                                                                CategoryStruct.comp (f j₁) (π f) = CategoryStruct.comp (f j₂) (π f)
                                                                                                                                                                theorem CategoryTheory.Limits.wideCoequalizer.condition_assoc {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} (f : J → (X Y)) [HasWideCoequalizer f] (j₁ j₂ : J) {Z : C} (h : wideCoequalizer f Z) :

                                                                                                                                                                The cotrident built from wideCoequalizer.π f is colimiting.

                                                                                                                                                                Equations
                                                                                                                                                                  Instances For
                                                                                                                                                                    @[reducible, inline]
                                                                                                                                                                    abbrev CategoryTheory.Limits.wideCoequalizer.desc {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideCoequalizer f] [Nonempty J] {W : C} (k : Y W) (h : ∀ (j₁ j₂ : J), CategoryStruct.comp (f j₁) k = CategoryStruct.comp (f j₂) k) :

                                                                                                                                                                    Any morphism k : Y ⟶ W satisfying ∀ j₁ j₂, f j₁ ≫ k = f j₂ ≫ k factors through the wide coequalizer of f via wideCoequalizer.desc : wideCoequalizer f ⟶ W.

                                                                                                                                                                    Equations
                                                                                                                                                                      Instances For
                                                                                                                                                                        theorem CategoryTheory.Limits.wideCoequalizer.π_desc {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideCoequalizer f] [Nonempty J] {W : C} (k : Y W) (h : ∀ (j₁ j₂ : J), CategoryStruct.comp (f j₁) k = CategoryStruct.comp (f j₂) k) :
                                                                                                                                                                        theorem CategoryTheory.Limits.wideCoequalizer.π_desc_assoc {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideCoequalizer f] [Nonempty J] {W : C} (k : Y W) (h : ∀ (j₁ j₂ : J), CategoryStruct.comp (f j₁) k = CategoryStruct.comp (f j₂) k) {Z : C} (h✝ : W Z) :
                                                                                                                                                                        def CategoryTheory.Limits.wideCoequalizer.desc' {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideCoequalizer f] [Nonempty J] {W : C} (k : Y W) (h : ∀ (j₁ j₂ : J), CategoryStruct.comp (f j₁) k = CategoryStruct.comp (f j₂) k) :

                                                                                                                                                                        Any morphism k : Y ⟶ W satisfying ∀ j₁ j₂, f j₁ ≫ k = f j₂ ≫ k induces a morphism l : wideCoequalizer f ⟶ W satisfying wideCoequalizer.π ≫ g = l.

                                                                                                                                                                        Equations
                                                                                                                                                                          Instances For
                                                                                                                                                                            theorem CategoryTheory.Limits.wideCoequalizer.hom_ext {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideCoequalizer f] [Nonempty J] {W : C} {k l : wideCoequalizer f W} (h : CategoryStruct.comp (π f) k = CategoryStruct.comp (π f) l) :
                                                                                                                                                                            k = l

                                                                                                                                                                            Two maps from a wide coequalizer are equal if they are equal when composed with the wide coequalizer map

                                                                                                                                                                            theorem CategoryTheory.Limits.wideCoequalizer.hom_ext_iff {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideCoequalizer f] [Nonempty J] {W : C} {k l : wideCoequalizer f W} :
                                                                                                                                                                            instance CategoryTheory.Limits.wideCoequalizer.π_epi {J : Type w} {C : Type u} [Category.{v, u} C] {X Y : C} {f : J → (X Y)} [HasWideCoequalizer f] [Nonempty J] :
                                                                                                                                                                            Epi (π f)

                                                                                                                                                                            A wide coequalizer morphism is an epimorphism

                                                                                                                                                                            The wide coequalizer morphism in any colimit cocone is an epimorphism.

                                                                                                                                                                            @[reducible, inline]

                                                                                                                                                                            HasWideEqualizers represents a choice of wide equalizer for every family of morphisms

                                                                                                                                                                            Equations
                                                                                                                                                                              Instances For
                                                                                                                                                                                @[reducible, inline]

                                                                                                                                                                                HasWideCoequalizers represents a choice of wide coequalizer for every family of morphisms

                                                                                                                                                                                Equations
                                                                                                                                                                                  Instances For

                                                                                                                                                                                    If C has all limits of diagrams parallelFamily f, then it has all wide equalizers

                                                                                                                                                                                    If C has all colimits of diagrams parallelFamily f, then it has all wide coequalizers