Ramanujan sums are invariant under unit twists of the argument
ProvedVino.ramanujan_mul_unitanalytic-number-theorycircle-methodnumber-theoryramanujan-sums
Let and let be an integer that is invertible modulo . Then for every ,
Ramanujan's sum depends on only through the subgroup structure: multiplying by a unit permutes the reduced residues in the defining sum. This invariance is what removes the auxiliary Bezout coefficients when the modulus of a Ramanujan sum is split by the Chinese remainder theorem.
Preamble
import Definitions.Def_Vino_ramanujan import Mathlib.Data.ZMod.Units open Finset
Formal statement
namespace Vino
theorem ramanujan_mul_unit (q : ℕ) [NeZero q] {v : ℤ} (hv : IsUnit ((v : ℤ) : ZMod q)) (n : ℤ) :
ramanujan q (v * n) = ramanujan q n := by sorry
end VinoSource
R. C. Vaughan, The Hardy-Littlewood Method, 2nd ed., Cambridge Tracts in Mathematics 125, Cambridge University Press, 1997, Section 2.6 and Chapter 3; G. H. Hardy and E. M. Wright, An Introduction to the Theory of Numbers, 6th ed., Oxford University Press, 2008, Section 16.6 (Ramanujan's sum c_q(n)).