Proposition 8.3 — strongly major arc estimate
OpenTaoFivePrimes.strongly_major_arcProposition 8.3 of Tao's five-primes paper: the strongly major arc estimate.
Fix the constants of Section 8 of the paper: the Goldbach verification height , the Bourgain scale parameter , and the Riemann-hypothesis verification height . Let be an integer with
Write and for the two cutoffs, for the smoothed prime exponential sum, for the Dirichlet kernel, and
for the circle-method integrand of equation (8.11). Set
Then the integral of over the strongly major arc satisfies
The paper writes this conclusion as , where denotes a quantity of magnitude at most .
This is the main term of the circle method for Theorem 8.2: it says the near-zero frequencies already contribute the full expected size of the weighted representation count, with a relative error of at most . Paired with the complementary minor arc bound it yields the positivity of that count, which is the one remaining analytic obligation of the whole five-primes argument.
Formalization Note The circle is AddCircle 1 carrying its Haar probability measure, and is its norm, the distance from to the nearest integer; the strongly major arc is therefore the closed ball of radius about . The integrand is the published representationIntegrand, whose three finite Fourier polynomials agree with , and because is supported in and in , so the truncated ranges lose nothing.
The Dirichlet kernel sums over , which is what the paper's means, and is written with to match it; the gap between and is a relative , far inside the stated slack of .
The radius uses , as in the statement of Proposition 8.3 and in Proposition 8.4; two displays inside the proof print instead, which is inconsistent with the surrounding argument. The upper bound is not needed for this proposition, whose proof uses only ; it is carried because it is a standing hypothesis of Section 8.
import Definitions.Def_TaoFivePrimes_FourierRepresentation import Mathlib.Analysis.Normed.Group.AddCircle import Mathlib.MeasureTheory.Integral.Bochner.Set open MeasureTheory
namespace TaoFivePrimes
theorem strongly_major_arc (x : ℕ) (h1 : 87 * 10 ^ 35 ≤ x) (h2 : (x : ℝ) ≤ Real.exp 3100) :
‖(∫ α in Metric.closedBall (0 : AddCircle (1 : ℝ))
(3.29 * 10 ^ 9 / (3.6 * Real.pi * (x : ℝ))),
representationIntegrand x (4 * 10 ^ 14) α ∂AddCircle.haarAddCircle) -
((2 / 3 * ((x : ℝ) ^ 2 / 1000 * ((4 * 10 ^ 14 / 3 : ℕ) : ℝ) ^ 3) : ℝ) : ℂ)‖ ≤
1 / 10 * ((x : ℝ) ^ 2 / 1000 * ((4 * 10 ^ 14 / 3 : ℕ) : ℝ) ^ 3) := by sorry
end TaoFivePrimes