AlexKontorovich/PrimeNumberTheoremAnd
Source indexedlemma · leanprover/lean4:v4.32.0
AnalyticOn.norm_le_of_norm_le_on_sphere
PrimeNumberTheoremAnd.StrongPNT · PrimeNumberTheoremAnd/StrongPNT.lean:30 to 55
Mathematical statement
Exact Lean statement
@[blueprint "AnalyticOn.norm_le_of_norm_le_on_sphere"
(title := "AnalyticOn.norm-le-of-norm-le-on-sphere")
(statement := /--
An application of the Maximum modulus principle.
-/)
(proof := /--
This is standard in the literature.
-/)
(latexEnv := "lemma")]
lemma AnalyticOn.norm_le_of_norm_le_on_sphere {C r R : ℝ} {f : ℂ → ℂ} {w : ℂ}
(hyp_r : r ≤ R)
(analytic : AnalyticOn ℂ f (Metric.closedBall 0 R))
(cond : ∀ z ∈ Metric.sphere 0 r, ‖f z‖ ≤ C)
(wInS : w ∈ Metric.closedBall 0 r) :
‖f w‖ ≤ CComplete declaration
Lean source
Full Lean sourceLean 4
@[blueprint "AnalyticOn.norm_le_of_norm_le_on_sphere" (title := "AnalyticOn.norm-le-of-norm-le-on-sphere") (statement := /-- An application of the Maximum modulus principle. -/) (proof := /-- This is standard in the literature. -/) (latexEnv := "lemma")]lemma AnalyticOn.norm_le_of_norm_le_on_sphere {C r R : ℝ} {f : ℂ → ℂ} {w : ℂ} (hyp_r : r ≤ R) (analytic : AnalyticOn ℂ f (Metric.closedBall 0 R)) (cond : ∀ z ∈ Metric.sphere 0 r, ‖f z‖ ≤ C) (wInS : w ∈ Metric.closedBall 0 r) : ‖f w‖ ≤ C := by apply Complex.norm_le_of_forall_mem_frontier_norm_le (U := Metric.closedBall 0 r) Metric.isBounded_closedBall · apply DifferentiableOn.diffContOnCl rw [Metric.closure_closedBall] exact AnalyticOn.differentiableOn (AnalyticOn.mono analytic (Metric.closedBall_subset_closedBall hyp_r)) · rw [frontier_closedBall'] exact cond · rw [Metric.closure_closedBall] exact wInS