Minor arc bound (8.17) for the five-primes circle method
OpenTaoFivePrimes.minor_arc_boundThe minor arc bound in Tao's five-primes paper, equation (8.17).
The constants and notation are those of Section 8 of the paper: , , , the cutoffs and , the smoothed prime exponential sums , and the Dirichlet kernel . Let be an integer with
Then, with ,
This is the complement of Proposition 8.3. That proposition puts the strongly major arc contribution within of ; since , the two estimates together force the weighted representation count to be strictly positive, which is exactly Theorem 8.2. In the paper this bound is in turn obtained from Proposition 8.4, the estimate , together with the estimate (8.18), by Hölder's inequality.
A remark on the source. As printed, the right-hand side of (8.17) reads . The exponent there is a misprint for , and the statement above uses . Two independent checks fix it: the quantity being compared against is Proposition 8.3's main term , so the comparison is only meaningful at ; and the paper's own derivation multiplies Proposition 8.4's by the bound of size , giving , which is what rounds. With the printed exponent the inequality would be a far stronger claim that the paper neither proves nor needs. (The display (8.18) carries a matching slip, an extra factor of on its right-hand side.)
Formalization Note The circle is AddCircle 1 with its Haar probability measure and is its norm, the distance to the nearest integer. The integrand is the norm of the published representationIntegrand: since , that norm is exactly , the three finite Fourier polynomials agreeing with the corresponding sums because is supported in and in .
The domain is the complement of the closed ball of radius , that is the open condition , rather than the paper's closed ; the two domains differ by two points, a null set, and in any case the open one is contained in the closed one, so this statement is implied by the printed inequality. As in Proposition 8.3, is used for the Dirichlet kernel range and in .
import Definitions.Def_TaoFivePrimes_FourierRepresentation import Mathlib.Analysis.Normed.Group.AddCircle import Mathlib.MeasureTheory.Integral.Bochner.Set open MeasureTheory
namespace TaoFivePrimes
theorem minor_arc_bound (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) ≤
56 / 100 * ((x : ℝ) ^ 2 / 1000 * ((4 * 10 ^ 14 / 3 : ℕ) : ℝ) ^ 3) := by sorry
end TaoFivePrimes