All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

Neg DE₂ qexp

negDE₂_qexp

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

Canonical source
Full Lean sourceLean 4
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

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