Dominated Convergence Theorem
The Dominated Convergence Theorem (DCT) is the principal tool for interchanging limits and Lebesgue integrals. The price of admission is a single integrable function that uniformly bounds the entire sequence — the dominating function.
Statement
Let be a sequence of measurable functions on a measure space such that:
- pointwise -almost everywhere,
- there exists with for a.e. and all .
Then and
Visualization
Example: on .
Dominating function: for all (AM–GM on and ), so is integrable.
Pointwise limit: for each fixed , .
| (exact) | max height | |
|---|---|---|
| 1 | at | |
| 5 | at | |
| 10 | at | |
| 50 | at | |
| 100 | at |
The peak of stays at height but migrates to , shrinking the area beneath it:
0.5 | * (* = peak of f_n)
| * *
| * *
0 +-----------> x
0 1/n 1
The integrals converge to , consistent with DCT.
Proof Sketch
-
The function and , so Fatou's LemmaFatou's LemmaThe integral of the liminf of nonnegative measurable functions is at most the liminf of their integralsRead more → applies to both sequences.
-
Apply Fatou to :
- Apply Fatou to :
- Combining: , so .
Connections
DCT is often the last step in proving classical theorems of analysis: differentiating under the integral sign uses it to swap and , and it drives the proof that convergence implies convergence of integrals in Fundamental Theorem of CalculusFundamental Theorem of CalculusIntegration and differentiation are inverse operationsRead more → settings. In probability, it is used to justify computing from under uniform integrability. See also Fatou's LemmaFatou's LemmaThe integral of the liminf of nonnegative measurable functions is at most the liminf of their integralsRead more → for the one-sided predecessor and Monotone Convergence TheoremMonotone Convergence TheoremA bounded monotone sequence of reals always converges — the supremum is the limitRead more → for the monotone variant with no domination required.
Lean4 Proof
import Mathlib.MeasureTheory.Integral.DominatedConvergence
open MeasureTheory Filter TopologicalSpace
/-- Dominated convergence theorem: pointwise a.e. convergence plus an integrable
dominating bound implies convergence of integrals. -/
theorem dct {α G : Type*} [MeasurableSpace α] [NormedAddCommGroup G]
[NormedSpace ℝ G] [CompleteSpace G]
{μ : Measure α} {F : ℕ → α → G} {f : α → G} {bound : α → ℝ}
(F_meas : ∀ n, AEStronglyMeasurable (F n) μ)
(h_bound : ∀ n, ∀ᵐ x ∂μ, ‖F n x‖ ≤ bound x)
(bound_integrable : Integrable bound μ)
(h_lim : ∀ᵐ x ∂μ, Tendsto (fun n => F n x) atTop (𝓝 (f x))) :
Tendsto (fun n => ∫ x, F n x ∂μ) atTop (𝓝 (∫ x, f x ∂μ)) :=
tendsto_integral_of_dominated_convergence bound F_meas bound_integrable h_bound h_limReferenced by
- Fatou's LemmaAnalysis
- Monotone Class TheoremAnalysis
- Fubini's TheoremAnalysis