Lemma 4.5 — Global L² estimate for smoothed prime sums
ProvedTaoFivePrimes.global_l2analytic-number-theoryfourier-analysisnumber-theory
Let , let be a natural number, and let vanish for . Write for the smoothed von Mangoldt exponential sum with the restriction , as in equation (4.1) of Tao's paper. With normalized Haar measure on , the function is integrable and
The quantity on the right is real and nonnegative. This global mean-square bound is an input to the local mass estimates used in the circle-method proof of the five-primes theorem.
Formalization Note This form implies Tao's Lemma 4.5 and explicitly records integrability. It omits the unused Section 4 assumptions that and that is nonnegative, bounded, measurable, and zero on negative arguments. Only vanishing above one is needed here. The real part of expresses the real-valued right-hand side in Lean.
Preamble
import Definitions.Def_TaoFivePrimes_SmoothedSum open MeasureTheory TaoFivePrimes
Formal statement
theorem TaoFivePrimes.global_l2 (η : ℝ → ℝ) (q : ℕ) (x : ℝ)
(hx : 1 ≤ x) (hη : ∀ t : ℝ, 1 < t → η t = 0) :
Integrable (fun α : AddCircle (1 : ℝ) ↦ ‖smoothedSum η q x α‖ ^ 2)
AddCircle.haarAddCircle ∧
(∫ α : AddCircle (1 : ℝ), ‖smoothedSum η q x α‖ ^ 2 ∂AddCircle.haarAddCircle) ≤
(smoothedSum (fun t ↦ (η t) ^ 2) q x 0).re * Real.log x := by sorrySource
Terence Tao, Every odd number greater than 1 is the sum of at most five primes, https://arxiv.org/abs/1201.6656, Lemma 4.5 (Global L² estimate), using equation (4.1). Generalized by dropping unused standing hypotheses from Section 4 and recording integrability.