Maximum modulus bound on a disk from a bound on an interior circle
ProvedAnalyticOn.norm_le_of_norm_le_on_spherecomplex-analysiszeta23
Let with , let be analytic on the closed disk (in the sense of Mathlib's AnalyticOn), and suppose that for every on the circle .
Then for every point in the closed disk ,
This is an instance of the maximum modulus principle: a bound for an analytic function on a circle propagates to the whole closed disk it bounds. In the project it lives in the preparatory module Zeta23.FromPNTPlus.StrongPNTPrefix and is used in the proof of the Jensen-type zero-counting bound ZerosBound and in the estimate Zeta23.WeilEF.norm_logDeriv_Cf_le bounding the logarithmic derivative of the zero-free factor , both ingredients of the Weil explicit-formula side of the argument.
Preamble
import Mathlib.Algebra.Lie.OfAssociative import Mathlib.Algebra.Order.BigOperators.GroupWithZero.Finset import Mathlib.Analysis.Analytic.Order import Mathlib.Analysis.CStarAlgebra.Classes import Mathlib.Analysis.Complex.BorelCaratheodory import Mathlib.Analysis.Complex.HasPrimitives import Mathlib.Analysis.Normed.Module.Connected import Mathlib.Data.Rat.Cast.OfScientific import Mathlib.Data.Real.StarOrdered import Mathlib.RingTheory.SimpleRing.Principal import Definitions.Def_Zeta23_FromPNTPlus_StrongPNTPrefix open Nat Filter Set Function Complex Real ComplexConjugate MeasureTheory
Formal statement
theorem 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 sorry
Source