Documentation

ConnesLean.Stage2.PrimeDistribution

Prime Distribution and Energy Decomposition #

Defines prime-indexed bounds, the prime constant c_p(λ), and structures for prime energy terms. For each prime p, the local distribution is W_p(f) = (log p) Σ_{m ≥ 1} p^{-m/2} (f(p^m) + f(p^{-m})), and -W_p(f) decomposes into translation norms plus a correction term.

Reference: lamportform.tex, Section 2, equation (2).

Bounds for prime sums #

def ConnesLean.primeBound (cutoffLambda : ) :

The upper bound for primes in the sum: floor(cutoffLambda^2). Only primes p <= cutoffLambda^2 contribute to the energy decomposition.

Equations
Instances For
    def ConnesLean.primeExponentBound (p : ) (cutoffLambda : ) :

    The upper bound for exponents: floor(2 log cutoffLambda / log p). For prime p, only exponents m with p^m <= cutoffLambda^2 contribute, which is equivalent to m <= 2 log cutoffLambda / log p.

    Equations
    Instances For
      def ConnesLean.primeFinset (cutoffLambda : ) :

      The finset of primes up to primeBound cutoffLambda.

      Equations
      Instances For
        def ConnesLean.exponentFinset (p : ) (cutoffLambda : ) :

        The finset of exponents {1, ..., primeExponentBound p cutoffLambda}.

        Equations
        Instances For

          Prime constant #

          def ConnesLean.primeConstant (p : ) (cutoffLambda : ) :

          The prime constant c_p(cutoffLambda) = -2(log p) Sum_{m=1}^{M_p} p^{-m/2}, where M_p = primeExponentBound p cutoffLambda.

          This collects the ‖G‖² terms from applying the unitary identity to each inner product <g, U_{p^m} g>.

          Reference: lamportform.tex, line 316.

          Equations
          Instances For
            theorem ConnesLean.primeConstant_nonpos {p : } (hp : Nat.Prime p) {cutoffLambda : } (_hLam : 1 < cutoffLambda) :
            primeConstant p cutoffLambda 0

            The prime constant is nonpositive: c_p(cutoffLambda) <= 0. Each term in the sum is positive (p > 0, log p > 0), so the overall expression with the leading -2 is nonpositive.

            Prime energy decomposition structure #

            def ConnesLean.primeEnergyTerm (p m : ) (G : ) (L : ) :

            The prime energy term for exponent m: the squared L² norm of the difference ‖G_tilde - S_{m log p} G_tilde‖² weighted by (log p) p^{-m/2}.

            This is the m-th summand in the prime energy decomposition.

            Equations
            • One or more equations did not get rendered due to their size.
            Instances For
              def ConnesLean.totalPrimeEnergy (p : ) (cutoffLambda : ) (G : ) (L : ) :

              The total prime energy: sum of prime energy terms over all relevant exponents. E_p(cutoffLambda, G) = Sum_{m=1}^{M_p} (log p) p^{-m/2} ‖G_tilde - S_{m log p} G_tilde‖².

              Equations
              Instances For