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
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
Anti Der Pos
antiDerPos
Plain-language statement
If is a modular form where is positive for sufficiently large (i.e. constant term is positive) and the derivative is positive, then is also positive.
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.
Anti Serre Der Pos
antiSerreDerPos
Plain-language statement
Let be a holomorphic function where is real for all . Assume that Serre derivative is positive on the imaginary axis. If is positive for sufficiently large , then is positive for all .
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.
Closed Ball center subset upper Half Plane
closedBall_center_subset_upperHalfPlane
Plain-language statement
Closed ball centered at z with radius z.im/2 is contained in the upper half plane.
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.