All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

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.

Exact Lean statement

theorem antiDerPos {F : ℍ → ℂ} (hFderiv : MDiff F)
    (hFepos : ResToImagAxis.EventuallyPos F) (hDF : ResToImagAxis.Pos (D F)) :
    ResToImagAxis.Pos F

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem antiDerPos {F : ℍ  ℂ} (hFderiv : MDiff F)    (hFepos : ResToImagAxis.EventuallyPos F) (hDF : ResToImagAxis.Pos (D F)) :    ResToImagAxis.Pos F := by  obtain hF_real, t₀, ht₀_pos, hF_pos := hFepos  obtain ⟨-, hDF_pos := hDF  let g := fun t => (F.resToImagAxis t).re  have hg :  t, 0 < t  HasDerivAt g (-2 * π * (ResToImagAxis (D F) t).re) t :=    fun t ht => hasDerivAt_resToImagAxis_re hFderiv ht  have hn :  t  Set.Ioi (0 : ), deriv g t < 0 := fun t (ht : 0 < t) => by    rw [(hg t ht).deriv]    have ht' : 0 < (ResToImagAxis (D F) t).re := hDF_pos t ht    nlinarith [Real.pi_pos]  have gpos := fun t ht =>    StrictAntiOn.eventuallyPos_Ioi (strictAntiOn_of_deriv_neg (convex_Ioi 0)    (fun x hx => (hg x hx).continuousAt.continuousWithinAt)      (by simpa [interior_Ioi] using hn)) ht₀_pos hF_pos t ht  exact hF_real, gpos
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/Derivative.lean:833-849

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 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
Project-declaredLean 4.31.0

Cusp Form rpow mul res To Imag Axis tendsto zero

cuspForm_rpow_mul_resToImagAxis_tendsto_zero

Plain-language statement

For a cusp form f of level Γ(n), we have t^s * f(it) → 0 as t → ∞ for any real power s. This follows from the exponential decay of cusp forms at infinity: f = O(exp(-2π τ.im / n)).

sphere packingFourier analysismodular forms

Source project: Sphere Packing in Dimension 8

Person-level attribution pending.

View proof record