Plain-language statement
Q-expansion identity: negDE₂ = 24 * ∑ n * σ₁(n) * q^n From Ramanujan's formula: D E₂ = (E₂² - E₄)/12, so -D E₂ = (E₄ - E₂²)/12. And the derivative of E₂ = 1 - 24∑ σ₁(n) q^n gives -D E₂ = 24 ∑ n σ₁(n) q^n. See blueprint equation at line 136 of modform-ineq.tex. Proof outline: 1. E₂_sigma_qexp: E₂ = 1 - 24 * ∑ σ₁(n) * q^n 2. D_qexp_tsum_pnat: D(∑ a(n) * q^n...
Exact Lean statement
theorem negDE₂_qexp (z : UpperHalfPlane) :
negDE₂ z = 24 * ∑' (n : ℕ+), (n : ℂ) * (ArithmeticFunction.sigma 1 n : ℂ) *
Complex.exp (2 * Real.pi * Complex.I * n * z)Formal artifact
Lean source
theorem negDE₂_qexp (z : UpperHalfPlane) : negDE₂ z = 24 * ∑' (n : ℕ+), (n : ℂ) * (ArithmeticFunction.sigma 1 n : ℂ) * Complex.exp (2 * Real.pi * Complex.I * n * z) := by simp only [negDE₂] let f : UpperHalfPlane → ℂ := fun w => ∑' n : ℕ+, (ArithmeticFunction.sigma 1 n : ℂ) * Complex.exp (2 * π * Complex.I * (n : ℂ) * (w : ℂ)) have hE2_eq : E₂ = (fun _ => 1) - (24 : ℂ) • f := by ext w; simpa [f] using E₂_sigma_qexp w have hDf : D f z = ∑' n : ℕ+, (n : ℂ) * (ArithmeticFunction.sigma 1 n : ℂ) * Complex.exp (2 * π * Complex.I * (n : ℂ) * (z : ℂ)) := D_qexp_tsum_pnat _ z (sigma1_qexp_summable z) sigma1_qexp_deriv_bound have hf_mdiff : MDiff f := by have h : f = (24 : ℂ)⁻¹ • (fun w => 1 - E₂ w) := by ext w simp only [f, Pi.smul_apply, smul_eq_mul] rw [E₂_sigma_qexp w] ring rw [h]; exact (mdifferentiable_const.sub E₂_holo').const_smul _ have hD_smul : D ((24 : ℂ) • f) z = (24 : ℂ) * D f z := by rw [congrFun (D_smul 24 f hf_mdiff) z, Pi.smul_apply, smul_eq_mul] have hD_one : D (fun _ : UpperHalfPlane => (1 : ℂ)) z = 0 := congrFun (D_const 1) z calc -(D E₂) z = -(D ((fun _ => 1) - (24 : ℂ) • f)) z := by rw [hE2_eq] _ = -(D (fun _ => 1) z - D ((24 : ℂ) • f) z) := by rw [congrFun (D_sub _ _ mdifferentiable_const (hf_mdiff.const_smul _)) z]; rfl _ = _ := by rw [hD_one, hD_smul, hDf]; ring- Project
- Sphere Packing in Dimension 8
- License
- Apache-2.0
- Commit
- acfc6204e65a
- Source
- SpherePacking/ModularForms/FG.lean:477-501
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.