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
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
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.