All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

Fmod G right Limit At zero

FmodG_rightLimitAt_zero

Plain-language statement

limt0+F(it)/G(it)=18/π2\lim_{t \to 0^+} F(it) / G(it) = 18 / \pi^2. Proof outline (following blueprint Lemma 8.8): 1. Change of variables: lim_{t→0⁺} F(it)/G(it) = lim_{s→∞} F(i/s)/G(i/s) 2. Apply functional equations: - F(i/s) = s^12F(is) - 12s^11/πF₁(is)E₄(is) + 36s^10/π²E₄(is)² - G(i/s) = s^10H₄(is)³(2H₄(is)² + 5H₄(is)*H₂(is) + 5H₂(is)²) 3. Divide to get: F(i/s)/G(i/...

Exact Lean statement

theorem FmodG_rightLimitAt_zero :
    Tendsto FmodGReal (nhdsWithin 0 (Set.Ioi 0)) (nhds (18 * (π ^ (-2 : ℤ))))

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem FmodG_rightLimitAt_zero :    Tendsto FmodGReal (nhdsWithin 0 (Set.Ioi 0)) (nhds (18 *^ (-2 : )))) := by  let rhs :    := fun s     (s ^ 2 * FReal s - 12 * π ^ (-1 : ) * (s * ((F₁ * E₄.toFun).resToImagAxis s).re)      + 36 * π ^ (-2 : ) * (E₄.toFun.resToImagAxis s).re ^ 2) /    ((H₄.resToImagAxis s).re ^ 3 *      (2 * (H₄.resToImagAxis s).re ^ 2 + 5 * (H₂.resToImagAxis s).re * (H₄.resToImagAxis s).re        + 5 * (H₂.resToImagAxis s).re ^ 2))  have hEq : ᶠ s in atTop, FmodGReal (1 / s) = rhs s := by    filter_upwards [eventually_gt_atTop 0] with s hs    have hF := F_functional_equation' hs    rw [(F₁_imag_axis_real.mul E₄_imag_axis_real).eq_real_part s,      E₄_imag_axis_real.eq_real_part s] at hF    have hF' : FReal (1 / s) = s ^ 10 *        (s ^ 2 * FReal s - 12 * π ^ (-1 : ) * (s * ((F₁ * E₄.toFun).resToImagAxis s).re)          + 36 * π ^ (-2 : ) * (E₄.toFun.resToImagAxis s).re ^ 2) := by      push_cast [ Complex.ofReal_inj]      linear_combination hF    unfold FmodGReal    rw [G_functional_eq_real hs, hF', mul_assoc (s ^ 10)]    exact mul_div_mul_left _ _ (pow_ne_zero 10 hs.ne')  have hlim : Tendsto rhs atTop (nhds (18 * π ^ (-2 : ))) := by    convert numerator_tendsto_at_infty.div denominator_tendsto_at_infty (by norm_num) using 2    · rfl    · ring  exact (hlim.comp tendsto_inv_nhdsGT_zero).congr' <|    (tendsto_inv_nhdsGT_zero.eventually hEq).mono fun t ht => by      simpa [one_div, inv_inv] using ht.symm
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/FG.lean:1187-1214

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