All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

D diff qexp

D_diff_qexp

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

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

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