Facts about epimorphisms and monomorphisms. #
The definitions of Epi
and Mono
are in CategoryTheory.Category
,
since they are used by some lemmas for Iso
, which is used everywhere.
- retraction : Y ⟶ X
The map splitting
f
- id : CategoryTheory.CategoryStruct.comp f s.retraction = CategoryTheory.CategoryStruct.id X
f
composed withretraction
is the identity
A split monomorphism is a morphism f : X ⟶ Y
with a given retraction retraction f : Y ⟶ X
such that f ≫ retraction f = 𝟙 X
.
Every split monomorphism is a monomorphism.
Instances For
- exists_splitMono : Nonempty (CategoryTheory.SplitMono f)
There is a splitting
IsSplitMono f
is the assertion that f
admits a retraction
Instances
A constructor for IsSplitMono f
taking a SplitMono f
as an argument
- section_ : Y ⟶ X
The map splitting
f
- id : CategoryTheory.CategoryStruct.comp s.section_ f = CategoryTheory.CategoryStruct.id Y
section_
composed withf
is the identity
A split epimorphism is a morphism f : X ⟶ Y
with a given section section_ f : Y ⟶ X
such that section_ f ≫ f = 𝟙 Y
.
(Note that section
is a reserved keyword, so we append an underscore.)
Every split epimorphism is an epimorphism.
Instances For
- exists_splitEpi : Nonempty (CategoryTheory.SplitEpi f)
There is a splitting
IsSplitEpi f
is the assertion that f
admits a section
Instances
A constructor for IsSplitEpi f
taking a SplitEpi f
as an argument
The chosen retraction of a split monomorphism.
Equations
- CategoryTheory.retraction f = (Nonempty.some (_ : Nonempty (CategoryTheory.SplitMono f))).retraction
Instances For
The retraction of a split monomorphism has an obvious section.
Equations
Instances For
The retraction of a split monomorphism is itself a split epimorphism.
A split mono which is epi is an iso.
The chosen section of a split epimorphism.
(Note that section
is a reserved keyword, so we append an underscore.)
Equations
- CategoryTheory.section_ f = (Nonempty.some (_ : Nonempty (CategoryTheory.SplitEpi f))).section_
Instances For
The section of a split epimorphism has an obvious retraction.
Equations
Instances For
The section of a split epimorphism is itself a split monomorphism.
A split epi which is mono is an iso.
Every iso is a split mono.
Every iso is a split epi.
Every split mono is a mono.
Every split epi is an epi.
Every split mono whose retraction is mono is an iso.
Every split mono whose retraction is mono is an iso.
Every split epi whose section is epi is an iso.
Every split epi whose section is epi is an iso.
A category where every morphism has a Trunc
retraction is computably a groupoid.
Equations
- CategoryTheory.Groupoid.ofTruncSplitMono all_split_mono = CategoryTheory.Groupoid.ofIsIso (_ : ∀ {X Y : C} (f : X ⟶ Y), CategoryTheory.IsIso f)
Instances For
- isSplitMono_of_mono : ∀ {X Y : C} (f : X ⟶ Y) [inst : CategoryTheory.Mono f], CategoryTheory.IsSplitMono f
All monos are split
A split mono category is a category in which every monomorphism is split.
Instances
- isSplitEpi_of_epi : ∀ {X Y : C} (f : X ⟶ Y) [inst : CategoryTheory.Epi f], CategoryTheory.IsSplitEpi f
All epis are split
A split epi category is a category in which every epimorphism is split.
Instances
In a category in which every monomorphism is split, every monomorphism splits. This is not an instance because it would create an instance loop.
In a category in which every epimorphism is split, every epimorphism splits. This is not an instance because it would create an instance loop.
Split monomorphisms are also absolute monomorphisms.
Equations
- CategoryTheory.SplitMono.map sm F = CategoryTheory.SplitMono.mk (F.map sm.retraction)
Instances For
Split epimorphisms are also absolute epimorphisms.
Equations
- CategoryTheory.SplitEpi.map se F = CategoryTheory.SplitEpi.mk (F.map se.section_)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.