Vaughan Theorem 4.2:
OpenCMSharp.S_sharp_boundLet and . There is a constant such that for every modulus and every integer with ,
This is the classical bound for complete exponential sums, Theorem 4.2 of Vaughan's The Hardy-Littlewood Method. It is sharper than the exponent obtainable by applying Weyl's inequality at : the two agree at , and for every one has , a saving that grows with .
Structure of the proof. By the Chinese remainder theorem is multiplicative in a twisted sense, for , so everything reduces to prime powers, where . Multiplying these local estimates over the prime factorization gives
and the accumulated constant is absorbed by the divisor bound: choosing with one has . The in the statement is exactly the price of this last step; the exponent itself is attained without loss.
Why it matters. In Waring's problem the local factors are built from , and the absolute convergence of the singular series depends on how fast decays below the trivial . The exponent is what makes the singular series converge for rather than only for exponentially large in .
import Definitions.Def_CircleMethod_waring import Mathlib.Analysis.SpecialFunctions.Pow.Real
namespace CMSharp
theorem S_sharp_bound {k : ℕ} (hk : 2 ≤ k) {ε : ℝ} (hε : 0 < ε) :
∃ C : ℝ, 0 < C ∧ ∀ (q : ℕ) (a : ℤ), 0 < q → Nat.Coprime a.natAbs q →
‖CircleMethod.S k q a‖ ≤ C * (q : ℝ) ^ (1 - 1 / (k : ℝ) + ε) := by sorry
end CMSharp