All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

L₁₀ div FG tendsto

L₁₀_div_FG_tendsto

Plain-language statement

lim_{t→∞} L₁,₀(it)/(F(it)G(it)) = 1/2.

Exact Lean statement

theorem L₁₀_div_FG_tendsto :
    Tendsto (fun t : ℝ ↦ (L₁₀.resToImagAxis t).re /
      ((F.resToImagAxis t).re * (G.resToImagAxis t).re))
        Filter.atTop (nhds (1 / 2))

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem L₁₀_div_FG_tendsto :    Tendsto (fun t :   (L₁₀.resToImagAxis t).re /      ((F.resToImagAxis t).re * (G.resToImagAxis t).re))        Filter.atTop (nhds (1 / 2)) := by  have h_wronskian :  z : ℍ, F z  0  G z  0       L₁₀ z / (F z * G z) = D F z / F z - D G z / G z := fun z hF hG => by    rw [L₁₀_eq_FD_G_sub_F_DG]; field_simp [hF, hG]  have hF_ne := eventually_ne_zero_of_tendsto_div (by norm_num : (720^2 : ℂ)  0) F_vanishing_order  have hG_ne := eventually_ne_zero_of_tendsto_div (by norm_num : (20480 : ℂ)  0) G_vanishing_order  have h_L_over_FG : Tendsto (L₁₀ / (F * G)) atImInfty (nhds (1 / 2)) := by    convert (D_F_div_F_tendsto.sub D_G_div_G_tendsto).congr' (by      filter_upwards [hF_ne, hG_ne] with z hF hG using (h_wronskian z hF hG).symm) using 2    all_goals norm_num  have h_re := Complex.continuous_re.continuousAt.tendsto.comp    (tendsto_resToImagAxis_of_tendsto_atImInfty h_L_over_FG)  simp only [show (1 / 2 : ℂ).re = (1 / 2 : ) by norm_num] at h_re  refine h_re.congr' ?_  filter_upwards with t  simp only [Function.comp_apply]  exact ResToImagAxis.Real.re_div_mul_eq F_imag_axis_real G_imag_axis_real t
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/FG.lean:922-941

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