Tao Section 5: the dyadic representation of the Type II sum
ProvedTaoFivePrimes.theorem51_typeII_dyadic_representationThe dyadic representation of the Type II sum. Let with , and , and for let
be the dyadic block of the bilinear sum, with the centred divisor coefficient. Then vanishes off , the function is integrable on , and
This is the measure-theoretic half of the source's Type II estimate. The inequality comes from the dyadic integral representation of the cutoff,
which is public and proved on the platform as TaoFivePrimes.eta0_dyadic_integral, together with an interchange of the double sum with the integral and the triangle inequality. The support statement is the observation that both dyadic blocks are nonempty only when : the -block forces against , and the -block forces against .
Formalization Note The Type II sum and the centred coefficient are the platform definitions imported from Def_TaoFivePrimes_Theorem51Sums; the double sum is over all natural numbers and is finite because of the indicators. is written out explicitly rather than existentially, so that the pointwise large-sieve bound can be stated for the same function.
import Mathlib import Definitions.Def_TaoFivePrimes_Theorem51Sums open MeasureTheory
theorem TaoFivePrimes.theorem51_typeII_dyadic_representation
(x alpha U V : ℝ) (hx : 0 < x) (hU40 : 40 ≤ U) (hV40 : 40 ≤ V) (hUx : U < x) (hVx : V < x)
(hUV : U * V ≤ x / 4) (hUV2 : x ≤ U * V ^ 2) :
(∀ W : ℝ, W ∉ Set.Icc V (x / U) → ‖∑' d : ℕ, ∑' w : ℕ,
(if U < (d : ℝ) ∧ V < (w : ℝ) ∧ d.Coprime 2 ∧ w.Coprime 2
∧ x / (2 * W) ≤ (d : ℝ) ∧ (d : ℝ) ≤ x / W
∧ W / 2 ≤ (w : ℝ) ∧ (w : ℝ) ≤ W then
((ArithmeticFunction.moebius d : ℤ) : ℂ)
* ((TaoFivePrimes.theorem51Centered V w : ℝ) : ℂ)
* TaoFivePrimes.expCircle (alpha * d * w)
else 0)‖ = 0)
∧ MeasureTheory.IntegrableOn (fun W : ℝ => ‖∑' d : ℕ, ∑' w : ℕ,
(if U < (d : ℝ) ∧ V < (w : ℝ) ∧ d.Coprime 2 ∧ w.Coprime 2
∧ x / (2 * W) ≤ (d : ℝ) ∧ (d : ℝ) ≤ x / W
∧ W / 2 ≤ (w : ℝ) ∧ (w : ℝ) ≤ W then
((ArithmeticFunction.moebius d : ℤ) : ℂ)
* ((TaoFivePrimes.theorem51Centered V w : ℝ) : ℂ)
* TaoFivePrimes.expCircle (alpha * d * w)
else 0)‖ / W) (Set.Ioi 0)
∧ TaoFivePrimes.theorem51TypeII x alpha U V
≤ 4 * ∫ W in Set.Ioi (0:ℝ), ‖∑' d : ℕ, ∑' w : ℕ,
(if U < (d : ℝ) ∧ V < (w : ℝ) ∧ d.Coprime 2 ∧ w.Coprime 2
∧ x / (2 * W) ≤ (d : ℝ) ∧ (d : ℝ) ≤ x / W
∧ W / 2 ≤ (w : ℝ) ∧ (w : ℝ) ≤ W then
((ArithmeticFunction.moebius d : ℤ) : ℂ)
* ((TaoFivePrimes.theorem51Centered V w : ℝ) : ℂ)
* TaoFivePrimes.expCircle (alpha * d * w)
else 0)‖ / W := by sorry