Documentation

ConnesLean.Stage5.FourierSymbol

Fourier Symbol Definition and Basic Properties #

Defines the Fourier symbol ψ_λ(ξ) decomposing the energy form in Fourier space:

Properties: nonnegativity, evenness (from sin²), and vanishing at zero.

Reference: lamportform.tex, Section 7.2, lines 783–842.

Definitions #

The archimedean part of the Fourier symbol: 4 ∫ t in (0, 2L), w(t) sin²(ξt/2) dt

Reference: lamportform.tex, line 790.

Equations
Instances For
    def ConnesLean.primeFourierSymbol (cutoffLambda ξ : ) :

    The prime part of the Fourier symbol: 4 Σ_{p ∈ primeFinset λ} Σ_{m ∈ exponentFinset p λ} (log p) p^{-m/2} sin²(ξ·m·log(p)/2)

    Reference: lamportform.tex, line 793.

    Equations
    • One or more equations did not get rendered due to their size.
    Instances For
      def ConnesLean.fourierSymbol (cutoffLambda ξ : ) :

      The full Fourier symbol ψ_λ(ξ), defined as the sum of the archimedean and prime parts.

      Reference: lamportform.tex, Lemma 9 (line 797).

      Equations
      Instances For

        Nonnegativity #

        The archimedean Fourier symbol is nonneg: each term has w(t) > 0 and sin² ≥ 0.

        theorem ConnesLean.primeFourierSymbol_nonneg (cutoffLambda ξ : ) :
        0 primeFourierSymbol cutoffLambda ξ

        The prime Fourier symbol is nonneg: each term has log p > 0, p^{-m/2} > 0, and sin² ≥ 0.

        theorem ConnesLean.fourierSymbol_nonneg (cutoffLambda ξ : ) :
        0 fourierSymbol cutoffLambda ξ

        The full Fourier symbol is nonneg.

        Evenness #

        The archimedean Fourier symbol is even: sin²(-x) = sin²(x).

        theorem ConnesLean.primeFourierSymbol_even (cutoffLambda ξ : ) :
        primeFourierSymbol cutoffLambda (-ξ) = primeFourierSymbol cutoffLambda ξ

        The prime Fourier symbol is even.

        theorem ConnesLean.fourierSymbol_even (cutoffLambda ξ : ) :
        fourierSymbol cutoffLambda (-ξ) = fourierSymbol cutoffLambda ξ

        The full Fourier symbol is even: ψ_λ(-ξ) = ψ_λ(ξ).

        Value at zero #

        The archimedean Fourier symbol vanishes at ξ = 0.

        theorem ConnesLean.primeFourierSymbol_zero (cutoffLambda : ) :
        primeFourierSymbol cutoffLambda 0 = 0

        The prime Fourier symbol vanishes at ξ = 0.

        theorem ConnesLean.fourierSymbol_zero (cutoffLambda : ) :
        fourierSymbol cutoffLambda 0 = 0

        The full Fourier symbol vanishes at ξ = 0: ψ_λ(0) = 0.