All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

Sigma qexp deriv bound generic

sigma_qexp_deriv_bound_generic

Plain-language statement

Generic derivative bound for σ_k q-series on compact sets. Uses σ_k(n) ≤ n^(k+1) (sigma_bound) and iter_deriv_comp_bound3 for exponential decay.

Exact Lean statement

lemma sigma_qexp_deriv_bound_generic (k : ℕ) :
    ∀ K : Set ℂ, K ⊆ {w : ℂ | 0 < w.im} → IsCompact K →
      ∃ u : ℕ+ → ℝ, Summable u ∧ ∀ (n : ℕ+) (z : K),
        ‖(ArithmeticFunction.sigma k n : ℂ) * (2 * Real.pi * Complex.I * n) *
          Complex.exp (2 * Real.pi * Complex.I * n * z.1)‖ ≤ u n

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma sigma_qexp_deriv_bound_generic (k : ) :     K : Set ℂ, K  {w : ℂ | 0 < w.im}  IsCompact K        u : +  , Summable u   (n : +) (z : K),        ‖(ArithmeticFunction.sigma k n : ℂ) * (2 * Real.pi * Complex.I * n) *          Complex.exp (2 * Real.pi * Complex.I * n * z.1)‖  u n := by  intro K hK hKc  obtain u₀, hu₀_sum, hu₀_bound := iter_deriv_comp_bound3 K hK hKc (k + 2)  refine fun n => u₀ n, hu₀_sum.subtype _, fun n z => ?_  have hpow : (2 * π * n) ^ (k + 2) *Complex.exp (2 * π * Complex.I * n * z.1)‖  u₀ n := by    simpa [abs_of_pos Real.pi_pos] using hu₀_bound n z  calc ‖(ArithmeticFunction.sigma k n : ℂ) * (2 * π * Complex.I * n) *          Complex.exp (2 * π * Complex.I * n * z.1)‖      = ‖(ArithmeticFunction.sigma k n : ℂ)‖ * ‖(2 * π * Complex.I * n : ℂ)‖ *Complex.exp (2 * π * Complex.I * n * z.1)‖ := by rw [norm_mul, norm_mul]    _  (n : ) ^ (k + 1) * (2 * π * n) *Complex.exp (2 * π * Complex.I * n * z.1)‖ := by        apply mul_le_mul_of_nonneg_right _ (norm_nonneg _)        have hs : ‖(ArithmeticFunction.sigma k n : ℂ)‖  (n : ) ^ (k + 1) := by          simpa using mod_cast ArithmeticFunction.sigma_le_pow_succ k n        have hn : ‖(2 * π * Complex.I * n : ℂ)‖ = 2 * π * n := by          simp [abs_of_pos Real.pi_pos]        rw [hn]; exact mul_le_mul hs le_rfl (by positivity) (by positivity)    _  (2 * π * n) ^ (k + 2) *Complex.exp (2 * π * Complex.I * n * z.1)‖ := by        apply mul_le_mul_of_nonneg_right _ (norm_nonneg _)        calc (n : ) ^ (k + 1) * (2 * π * ↑↑n) = (2 * π) * (n : ) ^ (k + 2) := by ring          _  (2 * π) ^ (k + 2) * (n : ) ^ (k + 2) := by              apply mul_le_mul_of_nonneg_right _ (by positivity)              calc (2 * π) = (2 * π) ^ 1 := (pow_one _).symm                _  (2 * π) ^ (k + 2) :=                    pow_le_pow_right₀ (by linarith [Real.two_le_pi]) (by omega)          _ = (2 * π * ↑↑n) ^ (k + 2) := by ring    _  u₀ n := hpow
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/FG.lean:245-275

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