Documentation

ConnesLean.Stage2.LogCoordinates

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
Instances For
    def ConnesLean.zeroExtend (G : ) (I : Set ) :

    Zero-extend a function outside a set, using Set.indicator. zeroExtend G I u = G u if u ∈ I, and 0 otherwise.

    Equations
    Instances For
      @[simp]
      theorem ConnesLean.zeroExtend_apply_mem {G : } {I : Set } {u : } (hu : u I) :
      zeroExtend G I u = G u
      @[simp]
      theorem ConnesLean.zeroExtend_apply_nmem {G : } {I : Set } {u : } (hu : uI) :
      zeroExtend G I u = 0

      The log interval is a measurable set.

      L² isometry via exp equivalence #

      The L² norm on (RPos, haarMult) equals the L² norm on (ℝ, volume) via the exponential change of variables: ∫ ‖g(x)‖² d*x = ∫ ‖g(exp u)‖² du.

      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.