All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

D is Bounded At Im Infty of bounded

D_isBoundedAtImInfty_of_bounded

Plain-language statement

The D-derivative is bounded at infinity for bounded holomorphic functions. For y large (y ≥ 2·max(A,0) + 1), we use a ball of radius z.im/2 around z. The ball lies in the upper half plane, f is bounded by M on it, and norm_D_le_of_sphere_bound gives ‖D f z‖ ≤ M/(π·z.im) ≤ M/π.

Exact Lean statement

lemma D_isBoundedAtImInfty_of_bounded {f : ℍ → ℂ}
    (hf : MDiff f)
    (hbdd : IsBoundedAtImInfty f) :
    IsBoundedAtImInfty (D f)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma D_isBoundedAtImInfty_of_bounded {f : ℍ  ℂ}    (hf : MDiff f)    (hbdd : IsBoundedAtImInfty f) :    IsBoundedAtImInfty (D f) := by  rw [isBoundedAtImInfty_iff] at hbdd   obtain M, A, hMA := hbdd  use M / π, 2 * max A 0 + 1  intro z hz  have hR_pos : 0 < z.im / 2 := by linarith [z.im_pos]  have hclosed := closedBall_center_subset_upperHalfPlane z  have hDiff : DiffContOnCl ℂ (f ∘ ofComplex) (Metric.ball (z : ℂ) (z.im / 2)) :=    diffContOnCl_comp_ofComplex_of_mdifferentiable hf hclosed  have hf_bdd_sphere :  w  Metric.sphere (z : ℂ) (z.im / 2), ‖(f ∘ ofComplex) w‖  M := by    intro w hw    have hw_im_pos : 0 < w.im := hclosed (Metric.sphere_subset_closedBall hw)    have hdist : dist w z = z.im / 2 := Metric.mem_sphere.mp hw    have habs : |w.im - z.im|  z.im / 2 := by      calc |w.im - z.im| = |(w - z).im| := by simp [Complex.sub_im]        _  ‖w - z‖ := abs_im_le_norm _        _ = dist w z := (dist_eq_norm _ _).symm        _ = z.im / 2 := hdist    have hw_im_ge_A : A  w.im := by linarith [(abs_le.mp habs).1, le_max_left A 0]    simpa [ofComplex_apply_of_im_pos hw_im_pos] using hMA w, hw_im_pos hw_im_ge_A  have hz_im_ge_1 : 1  z.im := by linarith [le_max_right A 0]  have hM_nonneg : 0  M := le_trans (norm_nonneg _) (hMA z (by linarith [le_max_left A 0]))  calc ‖D f z‖  M / (2 * π * (z.im / 2)) := norm_D_le_of_sphere_bound hR_pos hDiff hf_bdd_sphere    _ = M /* z.im) := by ring    _  M /* 1) := by gcongr    _ = M / π := by ring
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/Derivative.lean:1001-1029

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