Plain-language statement
D(E₂E₄ - E₆) = 720 * ∑ n²·σ₃(n)·qⁿ. Key for the log-derivative limit: (D F)/F → 2 as z → i∞.
Exact Lean statement
theorem D_diff_qexp (z : ℍ) :
D (E₂ * E₄ - E₆) z =
720 * ∑' n : ℕ+, (↑↑n : ℂ) ^ 2 * ↑((ArithmeticFunction.sigma 3) ↑n) *
cexp (2 * ↑Real.pi * Complex.I * ↑n * z)Formal artifact
Lean source
theorem D_diff_qexp (z : ℍ) : D (E₂ * E₄ - E₆) z = 720 * ∑' n : ℕ+, (↑↑n : ℂ) ^ 2 * ↑((ArithmeticFunction.sigma 3) ↑n) * cexp (2 * ↑Real.pi * Complex.I * ↑n * z) := by let a : ℕ+ → ℂ := fun n ↦ ↑n * ↑(σ 3 n) let b : ℕ+ → ℂ := fun n ↦ 720 * a n have hsum : Summable (fun n : ℕ+ => a n * cexp (2 * π * I * ↑n * ↑z)) := by simpa [pow_one] using sigma_qexp_summable_generic 1 3 z have hsum_deriv := qexp_deriv_bound_of_coeff_bound (a := a) fun n => by simp only [a, Complex.norm_mul, Complex.norm_natCast] calc (n : ℝ) * ↑(σ 3 ↑n) ≤ (n : ℝ) * (n : ℝ)^4 := by gcongr; exact_mod_cast ArithmeticFunction.sigma_le_pow_succ 3 n _ = (n : ℝ)^5 := by ring have h_eq' : ∀ w : ℍ, E₂ w * E₄ w - E₆ w = ∑' (n : ℕ+), b n * cexp (2 * π * I * ↑n * w) := fun w => by rw [E₂_mul_E₄_sub_E₆] simp only [b, a, ← tsum_mul_left] congr 1 funext n ring have hsum' : Summable (fun n : ℕ+ => b n * cexp (2 * π * I * ↑n * ↑z)) := by have hterm : (fun n : ℕ+ => b n * cexp (2 * π * I * ↑n * ↑z)) = fun n : ℕ+ => 720 * (a n * cexp (2 * π * I * ↑n * ↑z)) := by funext n simp only [a, b] ring rw [hterm] exact hsum.mul_left 720 have hsum_deriv' : ∀ K : Set ℂ, K ⊆ {w : ℂ | 0 < w.im} → IsCompact K → ∃ u : ℕ+ → ℝ, Summable u ∧ ∀ (n : ℕ+) (k : K), ‖b n * (2 * π * I * ↑n) * cexp (2 * π * I * ↑n * k.1)‖ ≤ u n := fun K hK_sub hK_compact => by obtain ⟨u, hu_sum, hu_bound⟩ := hsum_deriv K hK_sub hK_compact refine ⟨fun n => 720 * u n, hu_sum.mul_left 720, fun n k => ?_⟩ calc ‖b n * (2 * π * I * ↑n) * cexp (2 * π * I * ↑n * k.1)‖ = 720 * ‖a n * (2 * π * I * ↑n) * cexp (2 * π * I * ↑n * k.1)‖ := by simp only [b, norm_mul, Complex.norm_ofNat]; ring _ ≤ 720 * u n := mul_le_mul_of_nonneg_left (hu_bound n k) (by norm_num) calc D (E₂ * E₄ - E₆) z = D (fun w => ∑' (n : ℕ+), b n * cexp (2 * π * I * ↑n * w)) z := by congr 1 ext w exact h_eq' w _ = ∑' (n : ℕ+), (n : ℂ) * b n * cexp (2 * π * I * ↑n * z) := D_qexp_tsum_pnat b z hsum' hsum_deriv' _ = 720 * ∑' (n : ℕ+), (n : ℂ) ^ 2 * ↑(σ 3 n) * cexp (2 * π * I * ↑n * z) := by simp only [b, a, ← tsum_mul_left, sq] congr 1 funext n ring- Project
- Sphere Packing in Dimension 8
- License
- Apache-2.0
- Commit
- acfc6204e65a
- Source
- SpherePacking/ModularForms/FG.lean:812-862
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.