Proposition 11.6.7 — Uniform convergence implies uniform equicontinuity
ProvedLeblRA.uniform_limit_equicontinuous_11_6_7Let be a compact metric space, and let be continuous functions converging uniformly to . Then the sequence is uniformly equicontinuous:
Thus uniform convergence imposes one continuity condition shared by the entire sequence. This is Lebl’s Proposition 11.6.7.
Formalization Note. The full condition is written out: is independent of , , and . Uniform convergence is TendstoUniformly. No boundedness or nonemptiness assumption is added.
import Mathlib.Topology.UniformSpace.Ascoli import Mathlib.Topology.MetricSpace.UniformConvergence import Mathlib.Topology.MetricSpace.Equicontinuity import Mathlib.Topology.UniformSpace.HeineCantor import Mathlib.Topology.Sequences import Mathlib.Analysis.Complex.Basic import Mathlib.Tactic set_option autoImplicit false set_option maxHeartbeats 200000 open Filter Set Topology open scoped UniformConvergence universe u
namespace LeblRA
theorem uniform_limit_equicontinuous_11_6_7 {X : Type u} [MetricSpace X] [CompactSpace X]
(F : ℕ → X → ℂ) (hF : ∀ n, Continuous (F n)) (f : X → ℂ)
(hf : TendstoUniformly F f atTop) :
∀ ε > 0, ∃ δ > 0, ∀ x y, dist x y < δ → ∀ n, ‖F n x - F n y‖ < ε := by sorry
end LeblRARead-back
What the Lean code literally says, in plain math · Codex (exact model identifier unavailable in auditor runtime)
For every compact metric space (with no restriction on its underlying type's universe), every sequence , indexed by all natural numbers including , for which each is continuous, and every function , assume that converges uniformly to : for every real there is a natural number such that for every and every . Then, for every real , there is a real such that, for every with and every natural number , one has . Thus this one works simultaneously for every pair of points and every term of the sequence. Here is the usual complex modulus and is the metric on . The empty space is permitted; in that case the conditions and conclusions quantified over points are vacuous. No continuity hypothesis is imposed separately on .
Exact runtime model ID: unavailable; it was not exposed to this auditor.
Confirmed by the mission captain (proposal self-audit).