Theorem 7.12 — uniform limits of continuous functions
ProvedRudin.ch07_uniform_limit_continuousanalysistopology
If each is continuous on and uniformly on , then is continuous on .
Preamble
import Mathlib import Definitions.Def_Rudin_ch07_families open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorem 7.12: a uniform limit of continuous functions is continuous. -/
theorem ch07_uniform_limit_continuous {X : Type*} [MetricSpace X] (E : Set X) (f : ℕ → X → ℂ)
(g : X → ℂ) (hcont : ∀ n, ContinuousOn (f n) E) (huc : TendstoUniformlyOn f g atTop E) :
ContinuousOn g E := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 7, p. 150, Theorem 7.12
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let be a metric space, , and let and . If every is continuous on (relative continuity at each point of ) and uniformly on , then is continuous on .
Continuity is relative to throughout, so nothing is assumed or concluded about behaviour at points outside ; and may be empty, in which case the conclusion is trivial.
Human review
Confirmed by the mission captain (proposal self-audit).