All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

Sigma qexp summable generic

sigma_qexp_summable_generic

Plain-language statement

Generic summability for n^a * σ_b(n) * exp(2πinz) series. Uses σ_b(n) ≤ n^(b+1) (sigma_bound) and a33 (a+b+1) for exponential summability.

Exact Lean statement

lemma sigma_qexp_summable_generic (a b : ℕ) (z : UpperHalfPlane) :
    Summable (fun n : ℕ+ => (n : ℂ)^a * (ArithmeticFunction.sigma b n : ℂ) *
      Complex.exp (2 * Real.pi * Complex.I * n * z))

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma sigma_qexp_summable_generic (a b : ) (z : UpperHalfPlane) :    Summable (fun n : + => (n : ℂ)^a * (ArithmeticFunction.sigma b n : ℂ) *      Complex.exp (2 * Real.pi * Complex.I * n * z)) := by  apply Summable.of_norm  apply Summable.of_nonneg_of_le (fun n => norm_nonneg _)  · intro n    calc ‖(n : ℂ)^a * (ArithmeticFunction.sigma b n : ℂ) * Complex.exp (2 * π * Complex.I * n * z)‖        = ‖(n : ℂ)^a * (ArithmeticFunction.sigma b n : ℂ)‖ *Complex.exp (2 * π * Complex.I * n * z)‖ := norm_mul _ _      _  (n : )^(a + b + 1) *Complex.exp (2 * π * Complex.I * n * z)‖ := by          apply mul_le_mul_of_nonneg_right _ (norm_nonneg _)          rw [Complex.norm_mul, Complex.norm_pow, Complex.norm_natCast, Complex.norm_natCast]          calc (n : )^a * (ArithmeticFunction.sigma b n : )               (n : )^a * (n : )^(b + 1) := by                exact_mod_cast mul_le_mul_of_nonneg_left                  (ArithmeticFunction.sigma_le_pow_succ b n) (pow_nonneg (Nat.cast_nonneg n) a)            _ = (n : )^(a + b + 1) := by ring      _ = ‖(n : ℂ)^(a + b + 1) * Complex.exp (2 * π * Complex.I * n * z)‖ := by          rw [norm_mul, Complex.norm_pow, Complex.norm_natCast]  · apply summable_norm_iff.mpr    have ha33 := summable_pow_mul_cexp (a + b + 1) 1 z    simp only [PNat.val_ofNat, Nat.cast_one, mul_one] at ha33    apply (ha33.comp_injective PNat.coe_injective).congr    intro n    simp only [Function.comp_apply]    rw [ Complex.exp_nat_mul]    (congr 2; ring)
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/FG.lean:189-215

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.31.0

Anti Der Pos

antiDerPos

Plain-language statement

If FF is a modular form where F(it)F(it) is positive for sufficiently large tt (i.e. constant term is positive) and the derivative is positive, then FF is also positive.

sphere packingFourier analysismodular forms

Source project: Sphere Packing in Dimension 8

Person-level attribution pending.

View proof record
Project-declaredLean 4.31.0

Anti Serre Der Pos

antiSerreDerPos

Plain-language statement

Let F:HCF : \mathbb{H} \to \mathbb{C} be a holomorphic function where F(it)F(it) is real for all t>0t > 0. Assume that Serre derivative kF\partial_k F is positive on the imaginary axis. If F(it)F(it) is positive for sufficiently large tt, then F(it)F(it) is positive for all t>0t > 0.

sphere packingFourier analysismodular forms

Source project: Sphere Packing in Dimension 8

Person-level attribution pending.

View proof record