Major-arc expansion of the von Mangoldt exponential sum
ProvedVino.vmSum_coprime_char_expansionanalytic-number-theorycircle-methoddirichlet-charactersnumber-theory
Let , let be coprime to , and let . Then
where is the Gauss sum and is the von Mangoldt sum twisted by .
This is the identity that governs the major arcs in the three primes theorem. It is exact — no approximation has been made — and it converts the behaviour of the prime-side generating function at a rational point into a weighted average of character sums. Estimating each by the prime number theorem in arithmetic progressions, and evaluating the Gauss sums, is what produces the main term together with the singular series.
Preamble
import Definitions.Def_Vino_dirichlet import Definitions.Def_Vino_primes import Mathlib.NumberTheory.DirichletCharacter.Orthogonality import Mathlib.Data.ZMod.Units open Finset
Formal statement
namespace Vino
theorem vmSum_coprime_char_expansion (q : ℕ) [NeZero q] {b : ℕ} (hb : IsUnit ((b : ℕ) : ZMod q)) (N : ℕ) :
(Nat.totient q : ℂ) * ∑ n ∈ (Finset.range N).filter (fun n => Nat.Coprime n q),
((ArithmeticFunction.vonMangoldt n : ℝ) : ℂ)
* CircleMethod.e ((b : ℝ) / (q : ℝ) * (n : ℝ))
= ∑ χ : DirichletCharacter ℂ q,
χ⁻¹ ((b : ℕ) : ZMod q) * gaussE q χ * vmSumChar q χ⁻¹ N := by sorry
end VinoSource
R. C. Vaughan, The Hardy-Littlewood Method, 2nd ed., Cambridge Tracts in Mathematics 125, Cambridge University Press, 1997, Chapter 3, Section 3.1 (major arcs for the three primes theorem, expansion of the von Mangoldt exponential sum in Dirichlet characters); H. Davenport, Multiplicative Number Theory, 3rd ed., Springer GTM 74, 2000, Chapter 26.