Affine isometries #
In this file we define AffineIsometry 𝕜 P P₂
to be an affine isometric embedding of normed
add-torsors P
into P₂
over normed 𝕜
-spaces and AffineIsometryEquiv
to be an affine
isometric equivalence between P
and P₂
.
We also prove basic lemmas and provide convenience constructors. The choice of these lemmas and
constructors is closely modelled on those for the LinearIsometry
and AffineMap
theories.
Since many elementary properties don't require ‖x‖ = 0 → x = 0
we initially set up the theory for
SeminormedAddCommGroup
and specialize to NormedAddCommGroup
only when needed.
Notation #
We introduce the notation P →ᵃⁱ[𝕜] P₂
for AffineIsometry 𝕜 P P₂
, and P ≃ᵃⁱ[𝕜] P₂
for
AffineIsometryEquiv 𝕜 P P₂
. In contrast with the notation →ₗᵢ
for linear isometries, ≃ᵢ
for isometric equivalences, etc., the "i" here is a superscript. This is for aesthetic reasons to
match the superscript "a" (note that in mathlib →ᵃ
is an affine map, since →ₐ
has been taken by
algebra-homomorphisms.)
A 𝕜
-affine isometric embedding of one normed add-torsor over a normed 𝕜
-space into
another, denoted as f : P →ᵃⁱ[𝕜] P₂
.
- toFun : P → P₂
A 𝕜
-affine isometric embedding of one normed add-torsor over a normed 𝕜
-space into
another, denoted as f : P →ᵃⁱ[𝕜] P₂
.
Equations
- One or more equations did not get rendered due to their size.
The underlying linear map of an affine isometry is in fact a linear isometry.
Equations
- f.linearIsometry = { toLinearMap := f.linear, norm_map' := ⋯ }
Equations
- AffineIsometry.instFunLike = { coe := fun (f : P →ᵃⁱ[𝕜] P₂) => f.toFun, coe_injective' := ⋯ }
Reinterpret a linear isometry as an affine isometry.
Equations
- f.toAffineIsometry = { toAffineMap := f.toAffineMap, norm_map := ⋯ }
The identity affine isometry.
Equations
- AffineIsometry.id = { toAffineMap := AffineMap.id 𝕜 P, norm_map := ⋯ }
Equations
- AffineIsometry.instInhabited = { default := AffineIsometry.id }
Composition of affine isometries.
Equations
- g.comp f = { toAffineMap := g.comp f.toAffineMap, norm_map := ⋯ }
Equations
An affine isometric equivalence between two normed vector spaces,
denoted f : P ≃ᵃⁱ[𝕜] P₂
.
- toFun : P → P₂
- invFun : P₂ → P
- left_inv : Function.LeftInverse self.invFun self.toFun
- right_inv : Function.RightInverse self.invFun self.toFun
An affine isometric equivalence between two normed vector spaces,
denoted f : P ≃ᵃⁱ[𝕜] P₂
.
Equations
- One or more equations did not get rendered due to their size.
The underlying linear equiv of an affine isometry equiv is in fact a linear isometry equiv.
Equations
- e.linearIsometryEquiv = { toLinearEquiv := e.linear, norm_map' := ⋯ }
Reinterpret an AffineIsometryEquiv
as an AffineIsometry
.
Equations
- e.toAffineIsometry = { toAffineMap := ↑e.toAffineEquiv, norm_map := ⋯ }
Construct an affine isometry equivalence by verifying the relation between the map and its
linear part at one base point. Namely, this function takes a map e : P₁ → P₂
, a linear isometry
equivalence e' : V₁ ≃ᵢₗ[k] V₂
, and a point p
such that for any other point p'
we have
e p' = e' (p' -ᵥ p) +ᵥ e p
.
Equations
- AffineIsometryEquiv.mk' e e' p h = { toAffineEquiv := AffineEquiv.mk' e e'.toLinearEquiv p h, norm_map := ⋯ }
Reinterpret a linear isometry equiv as an affine isometry equiv.
Equations
- e.toAffineIsometryEquiv = { toAffineEquiv := e.toAffineEquiv, norm_map := ⋯ }
Reinterpret an AffineIsometryEquiv
as an IsometryEquiv
.
Equations
- e.toIsometryEquiv = { toEquiv := e.toEquiv, isometry_toFun := ⋯ }
Reinterpret an AffineIsometryEquiv
as a Homeomorph
.
Equations
Identity map as an AffineIsometryEquiv
.
Equations
- AffineIsometryEquiv.refl 𝕜 P = { toAffineEquiv := AffineEquiv.refl 𝕜 P, norm_map := ⋯ }
Equations
- AffineIsometryEquiv.instInhabited = { default := AffineIsometryEquiv.refl 𝕜 P }
The inverse AffineIsometryEquiv
.
Composition of AffineIsometryEquiv
s as an AffineIsometryEquiv
.
Equations
- e.trans e' = { toAffineEquiv := e.trans e'.toAffineEquiv, norm_map := ⋯ }
The group of affine isometries of a NormedAddTorsor
, P
.
Equations
The identity equivalence of an affine subspace equal to ⊤
to the whole space.
Equations
- AffineIsometryEquiv.ofTop s₁ h = { toAffineEquiv := (AffineEquiv.ofEq s₁ ⊤ h).trans (AffineSubspace.topEquiv 𝕜 V P), norm_map := ⋯ }
AffineEquiv.ofEq
as an AffineIsometryEquiv
.
Equations
- AffineIsometryEquiv.ofEq s₁ s₂ h = { toAffineEquiv := AffineEquiv.ofEq s₁ s₂ h, norm_map := ⋯ }
The map v ↦ v +ᵥ p
as an affine isometric equivalence between V
and P
.
Equations
- AffineIsometryEquiv.vaddConst 𝕜 p = { toAffineEquiv := AffineEquiv.vaddConst 𝕜 p, norm_map := ⋯ }
p' ↦ p -ᵥ p'
as an affine isometric equivalence.
Equations
- AffineIsometryEquiv.constVSub 𝕜 p = { toAffineEquiv := AffineEquiv.constVSub 𝕜 p, norm_map := ⋯ }
Translation by v
(that is, the map p ↦ v +ᵥ p
) as an affine isometric automorphism of P
.
Equations
- AffineIsometryEquiv.constVAdd 𝕜 P v = { toAffineEquiv := AffineEquiv.constVAdd 𝕜 P v, norm_map := ⋯ }
The map g
from V
to V₂
corresponding to a map f
from P
to P₂
, at a base point p
,
is an isometry if f
is one.
Point reflection in x
as an affine isometric automorphism.
Equations
If f
is an affine map, then its linear part is continuous iff f
is continuous.
If f
is an affine map, then its linear part is an open map iff f
is an open map.
An affine subspace is isomorphic to its image under an injective affine map.
This is the affine version of Submodule.equivMapOfInjective
.
Equations
- One or more equations did not get rendered due to their size.
Restricts an affine isometry to an affine isometry equivalence between a nonempty affine
subspace E
and its image.
This is an isometry version of AffineSubspace.equivMap
, having a stronger premise and a stronger
conclusion.
Equations
- AffineSubspace.isometryEquivMap φ E = { toAffineEquiv := E.equivMapOfInjective φ.toAffineMap ⋯, norm_map := ⋯ }