A function that is near a point is bounded on a punctured neighbourhood
ProvedZeta23_IsBigO_to_BddAboveanalysiscomplex-analysiszeta23
Let and , and suppose along the punctured neighbourhood filter (Lean: f =O[๐[โ ] p] 1).
Then there exists a neighbourhood of such that the set of values is bounded above:
This is a filter-language bookkeeping lemma converting an asymptotic big-O statement into a concrete bound on a punctured neighbourhood. In the module Zeta23.FromPNTPlus.ResidueCalcOnRectangles it feeds the rectangle residue theorem Zeta23.Analytic.residueTheorem_finset, where the hypothesis that is near each pole must be turned into boundedness in order to invoke removable-singularity arguments.
Preamble
import Mathlib.Analysis.Complex.CauchyIntegral
import Mathlib.Analysis.Complex.Convex
import Mathlib.Analysis.Complex.RemovableSingularity
import Mathlib.Analysis.InnerProductSpace.Basic
import Mathlib.Analysis.Meromorphic.NormalForm
import Mathlib.Analysis.Normed.Order.Lattice
import Mathlib.Analysis.SpecialFunctions.Integrals.Basic
import Mathlib.Order.Interval.Set.Monotone
import Mathlib.Tactic.Abel
import Mathlib.Tactic.LinearCombinationPrime
import Definitions.Def_Zeta23_FromPNTPlus_Rectangle
import Definitions.Def_Zeta23_FromPNTPlus_ResidueCalcOnRectangles
open Complex BigOperators Nat Classical Real Topology Filter
open Set MeasureTheory intervalIntegral Asymptotics
open scoped Interval
variable {E : Type*} [NormedAddCommGroup E] [NormedSpace โ E] {f g : โ โ E} {z w p c A : โ}
{x xโ xโ y yโ yโ ฯ : โ}
Formal statement
theorem Zeta23_IsBigO_to_BddAbove {f : โ โ โ} {p : โ}
(f_near_p : f =O[๐[โ ] p] (1 : โ โ โ)) :
โ U โ ๐ p, BddAbove (norm โ f '' (U \ {p})) := by sorry
Source