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
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
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.