Lifts of maps to separation quotients of seminormed groups #
For any SeminormedAddCommGroup M
, a NormedAddCommGroup
instance has been defined in
Mathlib.Analysis.Normed.Group.Uniform
.
Main definitions #
We use M
and N
to denote seminormed groups.
All the following definitions are in the SeparationQuotient
namespace. Hence we can access
SeparationQuotient.normedMk
as normedMk
.
normedMk
: the normed group hom fromM
toSeparationQuotient M
.liftNormedAddGroupHom
: Any bounded group homf : M → N
such that∀ x, ‖x‖ = 0 → f x = 0
descends to a bounded group homSeparationQuotient M → N
. Here,(f : NormedAddGroupHom M N)
,(hf : ∀ x : M, ‖x‖ = 0 → f x = 0)
andliftNormedAddGroupHom f hf : NormedAddGroupHom (SeparationQuotient M) N
such thatliftNormedAddGroupHom f hf (mk x) = f x
.
Main results #
norm_normedMk_eq_one : the operator norm of the projection is
1if the subspace is not
⊤`.norm_liftNormedAddGroupHom_le
:‖liftNormedAddGroupHom f hf‖ ≤ ‖f‖
.
The morphism from a seminormed group to the quotient by the inseparable setoid.
Equations
- SeparationQuotient.normedMk = { toFun := (↑SeparationQuotient.mkAddMonoidHom).toFun, map_add' := ⋯, bound' := ⋯ }
Instances For
The operator norm of the projection is at most 1
.
The lift of a group hom to the separation quotient as a group hom.
Equations
- SeparationQuotient.liftNormedAddGroupHom f hf = { toFun := ⇑(SeparationQuotient.liftContinuousAddMonoidHom ↑f ⋯), map_add' := ⋯, bound' := ⋯ }
Instances For
The equivalence between NormedAddGroupHom M N
vanishing on the inseparable setoid and
NormedAddGroupHom (SeparationQuotient M) N
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
For a norm-continuous group homomorphism f
, its lift to the separation quotient
is bounded by the norm of f
.
The projection is 0
if and only if all the elements have norm 0
.