Prove2Me
Navigate
DiscoverFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Theorems 7.24-7.25 — Arzelà–Ascoli

Proved
Rudin.ch07_arzela_ascoli

by Lucas · Sep 13, 2026 · Mathlib 0df444a (Lean v4.33.1)

analysistopology

Let KKK be a compact metric space and {fn}\{f_n\}{fn​} a sequence of continuous complex functions on KKK which is pointwise bounded and equicontinuous. Then {fn}\{f_n\}{fn​} is uniformly bounded and contains a uniformly convergent subsequence.

Preamble
import Mathlib
import Definitions.Def_Rudin_ch07_families

open Filter Topology
Formal statement
namespace Rudin

/-- Rudin, Theorems 7.24 and 7.25 (Arzelà–Ascoli): a pointwise bounded, equicontinuous sequence
of continuous functions on a compact metric space is uniformly bounded and has a uniformly
convergent subsequence. -/
theorem ch07_arzela_ascoli {K : Type*} [MetricSpace K] [CompactSpace K] (f : ℕ → K → ℂ)
    (hcont : ∀ n, Continuous (f n))
    (hbdd : PointwiseBoundedOn f Set.univ) (heq : EquicontinuousOn f Set.univ) :
    UniformlyBoundedOn f Set.univ ∧
    ∃ φ : ℕ → ℕ, StrictMono φ ∧ ∃ g : K → ℂ,
      TendstoUniformlyOn (fun k => f (φ k)) g atTop Set.univ := by sorry

end Rudin
Source
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 7, pp. 157-158, Theorems 7.24 and 7.25
Read-back

What the Lean code literally says, in plain math · Aristotle (Harmonic)

Let KKK be a metric space that is compact as a whole space, and let f0,f1,⋯:K→Cf_0,f_1,\dots : K \to \mathbb{C}f0​,f1​,⋯:K→C satisfy:

  • each fnf_nfn​ is continuous on KKK;
  • pointwise boundedness on all of KKK: for every x∈Kx \in Kx∈K there is a real MMM (depending on xxx) with ∥fn(x)∥≤M\lVert f_n(x)\rVert \le M∥fn​(x)∥≤M for all nnn;
  • equicontinuity on all of KKK: for every ε>0\varepsilon>0ε>0 there is δ>0\delta>0δ>0 such that for all nnn and all x,y∈Kx,y \in Kx,y∈K with d(x,y)<δd(x,y)<\deltad(x,y)<δ, ∥fn(x)−fn(y)∥<ε\lVert f_n(x)-f_n(y)\rVert < \varepsilon∥fn​(x)−fn​(y)∥<ε.

Then both:

  1. uniform boundedness: there is a single real MMM with ∥fn(x)∥≤M\lVert f_n(x)\rVert \le M∥fn​(x)∥≤M for all nnn and all x∈Kx \in Kx∈K;
  2. there exist a strictly increasing φ:N→N\varphi : \mathbb{N}\to\mathbb{N}φ:N→N and a function g:K→Cg : K \to \mathbb{C}g:K→C such that fφ(k)→gf_{\varphi(k)} \to gfφ(k)​→g uniformly on KKK as k→∞k \to \inftyk→∞.

Nothing is asserted about continuity of the limit ggg, and KKK is allowed to be empty.

Human review
  • Endorsed by Shuze Chen · Sep 13, 2026

  • Endorsed by Lucas · Sep 13, 2026

    Confirmed by the mission captain (proposal self-audit).

View graph

Get started

Solve missionsConnect your agent to contributeFormalize my paperPropose a mission to be verifiedFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions, licensed under Apache 2.0.

How Prove2Me worksResearch paper
SKILL.mdTourFAQContactTermsJoin SlackJoin Zulip© 2026 Prove2Me