All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

DE₄ qexp

DE₄_qexp

Plain-language statement

D E₄ q-expansion via termwise differentiation. D E₄ = 240 * ∑ n * σ₃(n) * qⁿ from differentiating E₄ = 1 + 240 * ∑ σ₃(n) * qⁿ.

Exact Lean statement

theorem DE₄_qexp (z : UpperHalfPlane) :
    D E₄.toFun z = 240 * ∑' (n : ℕ+), (n : ℂ) * (ArithmeticFunction.sigma 3 n : ℂ) *
      Complex.exp (2 * Real.pi * Complex.I * n * z)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem DE₄_qexp (z : UpperHalfPlane) :    D E₄.toFun z = 240 * ∑' (n : +), (n : ℂ) * (ArithmeticFunction.sigma 3 n : ℂ) *      Complex.exp (2 * Real.pi * Complex.I * n * z) := by  let f : UpperHalfPlane := fun w => ∑' n : +, (ArithmeticFunction.sigma 3 n : ℂ) *    Complex.exp (2 * π * Complex.I * (n : ℂ) * (w : ℂ))  have hE4_eq : E₄.toFun = (fun _ => 1) + (240 : ℂ) • f := by    ext w; simp only [ModularForm.toFun_eq_coe, f, Pi.add_apply, Pi.smul_apply, smul_eq_mul]    exact E₄_sigma_qexp w  have hDf : D f z = ∑' n : +, (n : ℂ) * (ArithmeticFunction.sigma 3 n : ℂ) *      Complex.exp (2 * π * Complex.I * (n : ℂ) * (z : ℂ)) := by    apply D_qexp_tsum_pnat _ z (sigma3_qexp_summable z) sigma3_qexp_deriv_bound  have hf_mdiff : MDiff f := by    have h : f = (240 : ℂ)⁻¹ • (fun w => E₄ w - 1) := by      ext w      simp only [f, Pi.smul_apply, smul_eq_mul]      rw [E₄_sigma_qexp w]      ring    rw [h]; exact (E₄.holo'.sub mdifferentiable_const).const_smul _  have hD_smul : D ((240 : ℂ) • f) z = (240 : ℂ) * D f z := by    rw [congrFun (D_smul 240 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₄.toFun z      = D ((fun _ => 1) + (240 : ℂ) • f) z := by rw [hE4_eq]    _ = D (fun _ => 1) z + D ((240 : ℂ) • f) z :=        congrFun (D_add _ _ mdifferentiable_const (hf_mdiff.const_smul _)) z    _ = _ := by rw [hD_one, hD_smul, zero_add, hDf]
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/FG.lean:370-395

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