Split Equalizers #
We define what it means for a triple of morphisms f g : X ⟶ Y, ι : W ⟶ X to be a split
equalizer: there is a retraction r of ι and a retraction t of g, which additionally satisfy
t ≫ f = r ≫ ι.
In addition, we show that every split equalizer is an equalizer
(CategoryTheory.IsSplitEqualizer.isEqualizer) and absolute
(CategoryTheory.IsSplitEqualizer.map)
A pair f g : X ⟶ Y has a split equalizer if there is a W and ι : W ⟶ X making f,g,ι a
split equalizer.
A pair f g : X ⟶ Y has a G-split equalizer if G f, G g has a split equalizer.
These definitions and constructions are useful in particular for the comonadicity theorems.
This file was adapted from Mathlib/CategoryTheory/Limits/Shapes/SplitCoequalizer.lean. Please try
to keep them in sync.
A split equalizer diagram consists of morphisms
ι f
W → X ⇉ Y
g
satisfying ι ≫ f = ι ≫ g together with morphisms
r t
W ← X ← Y
satisfying ι ≫ r = 𝟙 W, g ≫ t = 𝟙 X and f ≫ t = r ≫ ι.
The name "equalizer" is appropriate, since any split equalizer is an equalizer, see
CategoryTheory.IsSplitEqualizer.isEqualizer.
Split equalizers are also absolute, since a functor preserves all the structure above.
A map from
Xto the equalizerA map in the opposite direction to
fandg- condition : CategoryStruct.comp ι f = CategoryStruct.comp ι g
Composition of
ιwithfand withgagree - ι_leftRetraction : CategoryStruct.comp ι self.leftRetraction = CategoryStruct.id W
leftRetractionsplitsι - bottom_rightRetraction : CategoryStruct.comp g self.rightRetraction = CategoryStruct.id X
rightRetractionsplitsg - top_rightRetraction : CategoryStruct.comp f self.rightRetraction = CategoryStruct.comp self.leftRetraction ι
fcomposed withrightRetractionisleftRetractioncomposed withι
Instances For
Composition of ι with f and with g agree
leftRetraction splits ι
f composed with rightRetraction is leftRetraction composed with ι
rightRetraction splits g
Split equalizers are absolute: they are preserved by any functor.
Instances For
A split equalizer clearly induces a fork.
Instances For
The fork induced by a split equalizer is an equalizer, justifying the name. In some cases it is more convenient to show a given fork is an equalizer by showing it is split.
Instances For
The pair f,g is a cosplit pair if there is an h : W ⟶ X so that f, g, h forms a split
equalizer in C.
- splittable : ∃ (W : C) (h : W ⟶ X), Nonempty (IsSplitEqualizer f g h)
There is some split equalizer
Instances
The pair f,g is a G-cosplit pair if there is an h : W ⟶ G X so that G f, G g, h forms a
split equalizer in D.
Instances For
Get the equalizer object from the typeclass IsCosplitPair.
Instances For
Get the equalizer morphism from the typeclass IsCosplitPair.
Instances For
The equalizer morphism equalizerι gives a split equalizer on f,g.
Instances For
If f, g is cosplit, then G f, G g is cosplit.
If a pair has a split equalizer, it has an equalizer.