Fourier coefficient of the cube of a weighted exponential sum
ProvedVino.integral_cube_orthogonalityanalytic-number-theorycircle-methodnumber-theoryprime-numbers
Let be arbitrary weights and set . Then for every natural number ,
This is the fundamental counting identity of the circle method in its ternary, weighted form: the -th Fourier coefficient of is the weighted number of representations of as an ordered sum of three elements below . Stating it for arbitrary weights rather than for a specific arithmetic function is what makes it reusable — the von Mangoldt weighting, the indicator of the primes and any smoothed variant are all instances.
Preamble
import Definitions.Def_CircleMethod_char import Mathlib.Analysis.SpecialFunctions.Integrals.Basic open Finset
Formal statement
namespace Vino
theorem integral_cube_orthogonality (w : ℕ → ℂ) (N : ℕ) (n : ℕ) :
(∫ α in (0:ℝ)..1,
(∑ a ∈ Finset.range N, w a * CircleMethod.e (α * (a : ℝ))) ^ 3
* CircleMethod.e (-(n : ℝ) * α))
= ∑ a ∈ Finset.range N, ∑ b ∈ Finset.range N, ∑ c ∈ Finset.range N,
if a + b + c = n then w a * w b * w c else 0 := by sorry
end VinoSource
R. C. Vaughan, The Hardy-Littlewood Method, 2nd ed., Cambridge Tracts in Mathematics 125, Cambridge University Press, 1997, Section 1.1 equation (1.4) (the fundamental counting identity of the circle method) and Chapter 3 (the three primes theorem).