Log Coordinates: L² Isometry between ℝ₊* and ℝ #
Establishes the L² isometry between (ℝ₊*, d*x) and (ℝ, du) via logarithmic
coordinates. For g : ℝ₊* → ℂ supported on [λ⁻¹, λ], defines G = g ∘ exp
supported on (-log λ, log λ) with ‖g‖²_{L²(d*x)} = ‖G‖²_{L²(du)}.
Defines zeroExtend using Set.indicator.
Reference: lamportform.tex, Section 2.
Log interval and zero extension #
The symmetric open interval (-L, L) in log coordinates.
When L = log λ, this is the support of G = g ∘ exp for
g supported on [λ⁻¹, λ].
Equations
- ConnesLean.logInterval L = Set.Ioo (-L) L
Instances For
Zero-extend a function outside a set, using Set.indicator.
zeroExtend G I u = G u if u ∈ I, and 0 otherwise.
Equations
- ConnesLean.zeroExtend G I = I.indicator G
Instances For
The log interval is a measurable set.
L² isometry via exp equivalence #
Translating the dilation norm difference to translation norm difference:
∫ ‖g(x) - g(x/a)‖² d*x = ∫ ‖G(u) - G(u - log a)‖² du
where G = g ∘ exp.
This is the core identity connecting ‖g - U_a g‖² to ‖G - S_t G‖²
in the additive picture.