Prime-power base case for
OpenCMSharp.S_prime_pow_baseanalytic-number-theorycircle-methodexponential-sumsnumber-theory
Let be a prime and an integer with . In the range the complete exponential sum at the prime power takes the exact value
under the same range hypothesis as the recursion: there is a with and .
The reason is that the part of the sum over coprime to vanishes identically, while on the remaining terms the phase is an integer, so each of the surviving terms contributes .
This terminates the descent in the prime-power analysis of . The value is consistent with the target estimate , since exactly when .
Preamble
import Definitions.Def_CircleMethod_waring import Mathlib.Data.Nat.Prime.Basic
Formal statement
namespace CMSharp
theorem S_prime_pow_base {k p h j : ℕ} (hp : p.Prime) (a : ℤ) (ha : ¬ ((p : ℤ) ∣ a))
(hj : 1 ≤ j) (hjh : 2 * j ≤ h) (hk : ¬ ((p : ℤ) ^ j ∣ (k : ℤ))) (hhk : h ≤ k) :
CircleMethod.S k (p ^ h) a = ((p ^ (h - 1) : ℕ) : ℂ) := by sorry
end CMSharpSource
R. C. Vaughan, The Hardy-Littlewood Method, 2nd ed., Cambridge Tracts in Mathematics 125, Cambridge University Press, 1997, Chapter 4, Theorem 4.2 and its proof in Section 4.1.