Prove2Me
Navigate
DiscoverFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Theorem 11.32 — Lebesgue's dominated convergence theorem

Proved
Rudin.ch11_dominated_convergence

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

analysismeasure-theory

If measurable functions fnf_nfn​ converge pointwise to fff and satisfy ∣fn∣≤g|f_n| \le g∣fn​∣≤g for an integrable ggg, then fff is integrable and ∫fn dμ→∫f dμ\int f_n\,d\mu \to \int f\,d\mu∫fn​dμ→∫fdμ.

Preamble
import Mathlib
import Definitions.Def_Rudin_ch11_L2

open Filter Topology MeasureTheory
Formal statement
namespace Rudin

/-- Rudin, Theorem 11.32 (Lebesgue's dominated convergence theorem): if measurable functions
`f n` converge pointwise to `g` and are dominated by an integrable `h`, then `g` is
integrable and the integrals converge. -/
theorem ch11_dominated_convergence {X : Type*} [MeasurableSpace X] (μ : Measure X)
    (f : ℕ → X → ℝ) (g h : X → ℝ) (hf : ∀ n, Measurable (f n))
    (hdom : ∀ n, ∀ x, |f n x| ≤ h x) (hh : Integrable h μ)
    (hconv : ∀ x, Tendsto (fun n => f n x) atTop (𝓝 (g x))) :
    Integrable g μ ∧ Tendsto (fun n => ∫ x, f n x ∂μ) atTop (𝓝 (∫ x, g x ∂μ)) := by sorry

end Rudin
Source
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 11, p. 321, Theorem 11.32
Read-back

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

Let XXX be a measurable space with measure μ\muμ, let f0,f1,⋯:X→Rf_0,f_1,\dots : X \to \mathbb{R}f0​,f1​,⋯:X→R be measurable, and let g,h:X→Rg, h : X\to\mathbb{R}g,h:X→R. Assume:

  • ∣fn(x)∣≤h(x)|f_n(x)| \le h(x)∣fn​(x)∣≤h(x) for every index nnn and every point xxx (pointwise everywhere domination);
  • hhh is integrable with respect to μ\muμ;
  • for every xxx, fn(x)→g(x)f_n(x) \to g(x)fn​(x)→g(x) as n→∞n \to \inftyn→∞ (pointwise convergence everywhere).

Then both:

  1. ggg is integrable with respect to μ\muμ;
  2. ∫Xfn dμ⟶∫Xg dμ\displaystyle \int_X f_n \, d\mu \longrightarrow \int_X g \, d\mu∫X​fn​dμ⟶∫X​gdμ as n→∞n\to\inftyn→∞.

Measurability of ggg is not assumed (it follows from the pointwise limit). No almost-everywhere weakening is used: both the domination and the convergence are required at every point.

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