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 nFormal artifact
Lean source
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
Anti Der Pos
antiDerPos
Plain-language statement
If is a modular form where is positive for sufficiently large (i.e. constant term is positive) and the derivative is positive, then is also positive.
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.
Anti Serre Der Pos
antiSerreDerPos
Plain-language statement
Let be a holomorphic function where is real for all . Assume that Serre derivative is positive on the imaginary axis. If is positive for sufficiently large , then is positive for all .
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.
Closed Ball center subset upper Half Plane
closedBall_center_subset_upperHalfPlane
Plain-language statement
Closed ball centered at z with radius z.im/2 is contained in the upper half plane.
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.