The addition isometry on real numbers
Content created by malarbol.
Created on 2025-05-05.
Last modified on 2025-05-05.
{-# OPTIONS --lossy-unification #-} module real-numbers.isometry-addition-real-numbers where
Imports
open import foundation.dependent-pair-types open import foundation.function-types open import foundation.universe-levels open import metric-spaces.isometries-metric-spaces open import metric-spaces.metric-space-of-isometries-metric-spaces open import metric-spaces.metric-spaces open import real-numbers.addition-real-numbers open import real-numbers.dedekind-real-numbers open import real-numbers.inequality-real-numbers open import real-numbers.metric-space-of-real-numbers open import real-numbers.raising-universe-levels-real-numbers open import real-numbers.rational-real-numbers open import real-numbers.strict-inequality-real-numbers
Idea
For any a : ℝ
, addition by a
is an
isometry ℝ → ℝ
for the
standard real metric structure.
Moreover, the map x ↦ add-ℝ x
is an isometry from ℝ
into the
metric space of isometries
of ℝ
.
Definitions
Addition with a real number is an isometry ℝ → ℝ
module _ {l1 l2 : Level} (x : ℝ l1) where is-isometry-left-add-ℝ : is-isometry-Metric-Space ( metric-space-leq-ℝ l2) ( metric-space-leq-ℝ (l1 ⊔ l2)) ( add-ℝ x) is-isometry-left-add-ℝ d y z = ( λ Nyz → neighborhood-real-bound-each-leq-ℝ ( d) ( add-ℝ x y) ( add-ℝ x z) ( preserves-lower-neighborhood-leq-left-add-ℝ d x y z ( left-real-bound-neighborhood-leq-ℝ d y z Nyz)) ( preserves-lower-neighborhood-leq-left-add-ℝ d x z y ( right-real-bound-neighborhood-leq-ℝ d y z Nyz))) , ( λ Nxyz → neighborhood-real-bound-each-leq-ℝ d y z ( reflects-lower-neighborhood-leq-left-add-ℝ d x y z ( left-real-bound-neighborhood-leq-ℝ d (x +ℝ y) (x +ℝ z) Nxyz)) ( reflects-lower-neighborhood-leq-left-add-ℝ d x z y ( right-real-bound-neighborhood-leq-ℝ d (x +ℝ y) (x +ℝ z) Nxyz))) isometry-left-add-ℝ : isometry-Metric-Space ( metric-space-leq-ℝ l2) ( metric-space-leq-ℝ (l1 ⊔ l2)) isometry-left-add-ℝ = (add-ℝ x , is-isometry-left-add-ℝ)
Addition is an isometry from ℝ
to the metric space of isometries ℝ → ℝ
module _ {l1 l2 : Level} where is-isometry-isometry-left-add-ℝ : is-isometry-Metric-Space ( metric-space-leq-ℝ l1) ( metric-space-of-isometries-Metric-Space ( metric-space-leq-ℝ l2) ( metric-space-leq-ℝ (l1 ⊔ l2))) ( isometry-left-add-ℝ) is-isometry-isometry-left-add-ℝ d x y = ( λ Nxy z → neighborhood-real-bound-each-leq-ℝ ( d) ( add-ℝ x z) ( add-ℝ y z) ( preserves-lower-neighborhood-leq-right-add-ℝ d z x y ( left-real-bound-neighborhood-leq-ℝ d x y Nxy)) ( preserves-lower-neighborhood-leq-right-add-ℝ d z y x ( right-real-bound-neighborhood-leq-ℝ d x y Nxy))) , ( λ Nxyz → neighborhood-real-bound-each-leq-ℝ d x y ( reflects-lower-neighborhood-leq-right-add-ℝ ( d) ( raise-ℝ l2 zero-ℝ) ( x) ( y) ( left-real-bound-neighborhood-leq-ℝ ( d) ( x +ℝ raise-zero-ℝ l2) ( y +ℝ raise-zero-ℝ l2) ( Nxyz (raise-zero-ℝ l2)))) ( reflects-lower-neighborhood-leq-right-add-ℝ ( d) ( raise-zero-ℝ l2) ( y) ( x) ( right-real-bound-neighborhood-leq-ℝ ( d) ( x +ℝ raise-zero-ℝ l2) ( y +ℝ raise-zero-ℝ l2) ( Nxyz (raise-zero-ℝ l2))))) isometry-add-ℝ : isometry-Metric-Space ( metric-space-leq-ℝ l1) ( metric-space-of-isometries-Metric-Space ( metric-space-leq-ℝ l2) ( metric-space-leq-ℝ (l1 ⊔ l2))) isometry-add-ℝ = (isometry-left-add-ℝ , is-isometry-isometry-left-add-ℝ)
Recent changes
- 2025-05-05. malarbol. Metric properties of real negation, absolute value, addition and maximum (#1398).