Exactness of a pair #
For two maps
f : M → N
andg : N → P
, withZero P
,Function.Exact f g
says thatSet.range f = Set.preimage g {0}
For additive maps
f : M →+ N
andg : N →+ P
,Exact f g
says thatrange f = ker g
For linear maps
f : M →ₗ[R] N
andg : N →ₗ[R] P
,Exact f g
says thatrange f = ker g
TODO : #
generalize to
SemilinearMap
, evenSemilinearMapClass
add the multiplicative case (
Function.Exact
will becomeFunction.AddExact
?)
Given an exact sequence 0 → M → N → P
, giving a section P → N
is equivalent to giving a
splitting N ≃ M × P
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Given an exact sequence M → N → P → 0
, giving a retraction N → M
is equivalent to giving a
splitting N ≃ M × P
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equivalent characterizations of split exact sequences. Also known as the Splitting lemma.
A necessary and sufficient condition for an exact sequence to descend to a quotient.