All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

Logderiv tendsto of div exp tendsto

logderiv_tendsto_of_div_exp_tendsto

Plain-language statement

If F z / exp(a·z) → C ≠ 0 at i∞, then D F / F → a/(2πi): the exponential contributes a/(2πi) and the bounded limit factor's log-derivative vanishes. Public so downstream files (e.g. #331's Θ₂ analysis) can reuse it.

Exact Lean statement

lemma logderiv_tendsto_of_div_exp_tendsto {F : ℍ → ℂ} (hF : MDiff F) {a C : ℂ} (hC : C ≠ 0)
    (hlim : Filter.Tendsto (fun z : ℍ ↦ F z / cexp (a * z)) atImInfty (nhds C)) :
    Filter.Tendsto (fun z : ℍ ↦ D F z / F z) atImInfty (nhds (a / (2 * π * I)))

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma logderiv_tendsto_of_div_exp_tendsto {F : ℍ  ℂ} (hF : MDiff F) {a C : ℂ} (hC : C  0)    (hlim : Filter.Tendsto (fun z : ℍ  F z / cexp (a * z)) atImInfty (nhds C)) :    Filter.Tendsto (fun z : ℍ  D F z / F z) atImInfty (nhds (a / (2 * π * I))) := by  set q : ℍ := fun w  cexp (a * w) with hq  set g : ℍ := fun w  F w / q w with hg  have hq_ne :  w : ℍ, q w  0 := fun w  Complex.exp_ne_zero _  have hq_md : MDiff q := by    intro τ    change MDiffAt ((fun t : ℂ  cexp (a * t)) ∘ fun w : ℍ  (w : ℂ)) τ    exact DifferentiableAt_MDifferentiableAt      (G := fun t : ℂ  cexp (a * t)) (z := τ) ((differentiableAt_id.const_mul a).cexp)  have hg_md : MDiff g := MDifferentiable_div hF hq_md hq_ne  have hDg_div_g : Filter.Tendsto (fun z  D g z / g z) atImInfty (nhds 0) := by    change Filter.Tendsto (D g / g) atImInfty (nhds 0)    simpa using (D_tendsto_zero_of_isBoundedAtImInfty hg_md (hlim.isBigO_one )).div hlim hC  have hF_eq : F = q * g := by ext w; simp only [hg, Pi.mul_apply, mul_div_cancel₀ _ (hq_ne w)]  have hDq_div_q :  z : ℍ, D q z / q z = a / (2 * π * I) :=    fun z  by rw [hq]; exact D_cexp_div a z  have h_logderiv : ᶠ z : ℍ in atImInfty, D F z / F z = a / (2 * π * I) + D g z / g z := by    filter_upwards [hlim.eventually_ne hC] with z hz    rw [hF_eq, Pi.mul_apply, logderiv_mul_eq q g hq_md hg_md z (hq_ne z) hz, hDq_div_q z]  have hsum : Filter.Tendsto (fun z  a / (2 * π * I) + D g z / g z) atImInfty      (nhds (a / (2 * π * I))) := by tendsto_cont  exact hsum.congr' (by filter_upwards [h_logderiv] with z hz; exact hz.symm)
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/FG.lean:767-790

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