analytic_deriv_bounded_near_point
PrimeNumberTheoremAnd.ZetaBounds Β· PrimeNumberTheoremAnd/ZetaBounds.lean:206 to 219
Source documentation
From \texttt{riemannZeta_residue_one} (in Mathlib), we know that goes to as . Now apply Theorem \ref{ResidueOfTendsTo}. (This can also be done using below, which is expressed as plus things that are holomorphic for ...) -/)] theorem riemannZetaResidue : β U β π 1, BddAbove (norm β (ΞΆ - (fun s β¦ (s - 1)β»ΒΉ)) '' (U \ {1})) := by have zeta_holc : HolomorphicOn ΞΆ (univ \ {1}) := by intro y hy exact DifferentiableAt.differentiableWithinAt <| differentiableAt_riemannZeta hy.2 convert ResidueOfTendsTo univ_mem zeta_holc riemannZeta_residue_one using 6 simp
-- Main theorem: if functions agree on a punctured set, their derivatives agree there too theorem deriv_eqOn_of_eqOn_punctured (f g : β β β) (U : Set β) (p : β) (hU_open : IsOpen U) (h_eq : EqOn f g (U \ {p})) : EqOn (deriv f) (deriv g) (U \ {p}) := by intro x hx apply EventuallyEq.deriv_eq filter_upwards [IsOpen.mem_nhds (hU_open.sdiff isClosed_singleton) hx] with t ht using h_eq ht
/- New two theorems to be proven
Exact Lean statement
theorem analytic_deriv_bounded_near_point
(f : β β β) {U : Set β} {p : β} (hU : IsOpen U) (hp : p β U) (hf : HolomorphicOn f U) :
(deriv f) =O[π[β ] p] (1 : β β β)Complete declaration
Lean source
theorem analytic_deriv_bounded_near_point (f : β β β) {U : Set β} {p : β} (hU : IsOpen U) (hp : p β U) (hf : HolomorphicOn f U) : (deriv f) =O[π[β ] p] (1 : β β β) := by have U_in_filter : U β π p := by exact IsOpen.mem_nhds hU hp have T := (analyticOn_iff_differentiableOn hU).mpr hf have T2 : ContDiffOn β 1 f U := DifferentiableOn.contDiffOn hf hU have T3 : ContinuousOn (fun x β¦ ((deriv f) x)) U := by apply T2.continuousOn_deriv_of_isOpen hU (by simp) have T4 := T3.continuousAt U_in_filter have T5 : (deriv f) =O[π p] (1 : β β β) := T4.norm.isBoundedUnder_le.isBigO_one β exact Asymptotics.IsBigO.mono T5 inf_le_left