Montgomery's local concentration bound for the sifted Fourier polynomial
ProvedTaoFivePrimes.montgomery_corollary47_sourceFor every , every and every real weight sequence , provided the primorial of divides the primorial of , the sifted Fourier polynomial obeys the local concentration bound
where is the sifted von Mangoldt weight and the corresponding exponential sum.
This is the case of the Montgomery estimate that Tao invokes at Corollary 4.7, and it is one of the large-sieve inputs to the major-arc analysis: it says the mass of the sifted exponential sum near the origin is controlled by the sifted mass of the weights, with a loss of only .
Provenance note. This statement was previously bundled, in a single platform node, with the unrelated Rosser--Schoenfeld bound . The two come from different papers and neither depends on the other, so they are separated here to let each be attacked on its own.
import Definitions.Def_TaoFivePrimes_ArcSplit import Mathlib.MeasureTheory.Integral.Bochner.Set open scoped BigOperators ArithmeticFunction.vonMangoldt open MeasureTheory
namespace TaoFivePrimes
theorem montgomery_corollary47_source :
∀ (x : ℕ) (w : ℕ → ℝ) (R : ℝ),
1 < x →
1 < R →
primorial ⌊R⌋₊ ∣
primorial (Nat.sqrt x) →
(∫ α in Metric.closedBall (0 : AddCircle (1 : ℝ))
(1 / (2 * R ^ 2)),
‖TaoFourierIdentity.fourierPolynomial (Finset.range (x + 1))
(fun n ↦
((siftedVonMangoldt x n * w n : ℝ) : ℂ))
(fun n ↦ (n : ℤ)) α‖ ^ 2
∂AddCircle.haarAddCircle) ≤
(Real.log (x : ℝ) / Real.log R) *
(∑ n ∈ Finset.range (x + 1),
siftedVonMangoldt x n * (w n) ^ 2) := by
sorry
end TaoFivePrimes