The bilinear sum is the centred pair sum
ProvedTaoFivePrimes.eta0VaughanBilinearSum_eq_centredPairSumexponential-sumsfive-primesnumber-theoryvaughan-identity
The platform bilinear sum is the centred pair sum
Let and with , , . Then the platform's bilinear sum TaoFivePrimes.eta0VaughanBilinearSum equals the explicit centred pair sum
Indeed TaoFivePrimes.eta0VaughanBilinearSum pairs with the coefficient of TaoFivePrimes.vaughanTypeIICoefficient, tested against over pairs ; the conditions and agree for integer products, the coprimality test restricts to odd , and for integer the conditions and agree, so the divisor coefficient is exactly on the odd pairs that survive. This is the coefficient identity at the heart of the centring step of Tao's Lemma 4.11, isolated as a reindexing statement.
Preamble
import Mathlib import Definitions.Def_TaoFivePrimes_TypeIIChunkInterfaces
Formal statement
theorem TaoFivePrimes.eta0VaughanBilinearSum_eq_centredPairSum
(x alpha U V : ℝ) (hU : 40 ≤ U) (hV : 40 ≤ V)
(hUx : U < x) (hVx : V < x)
(hUVx : U * V ≤ x / 4) (hUV2 : x ≤ U * V ^ 2) :
TaoFivePrimes.eta0VaughanBilinearSum x alpha U V =
∑' d : ℕ, ∑' w : ℕ,
(if U < (d : ℝ) ∧ V < (w : ℝ) ∧ d.Coprime 2 ∧ w.Coprime 2 then
((ArithmeticFunction.moebius d : ℤ) : ℂ) *
(((TaoFivePrimes.theorem51Centered V w : ℝ)) : ℂ) *
TaoFivePrimes.expCircle (alpha * d * w) *
((TaoFivePrimes.eta0 ((d : ℝ) * (w : ℝ) / x) : ℝ) : ℂ)
else 0) := by sorrySource
Terence Tao, arXiv:1201.6656v4, Section 4, Lemma 4.11: the centring of the Type II divisor coefficient by ; statement of the identification between the platform bilinear sum and the explicit centred pair sum.