Fatou's Lemma
Fatou's lemma is one of the foundational inequalities in measure theory. It gives a lower bound on what integrals can do in the limit — and its power lies in requiring no domination hypothesis at all, only nonnegativity.
Statement
Let be a measure space and a sequence of nonnegative measurable functions . Then
The inequality can be strict, and no condition on convergence of the is assumed.
Visualization
Canonical example: on with Lebesgue measure.
| pointwise | ||
|---|---|---|
| 1 | everywhere | |
| 2 | ||
| 5 | ||
| 10 | ||
| 100 |
Each is a rectangle of area , but the rectangle shrinks to a point: for every fixed (and for the sequence , so the liminf at is — irrelevant, as it is a single point).
Therefore a.e., giving
This shows Fatou's inequality is strict here: mass escapes to zero width but nonzero height.
height
|
n | ##
| ##
| ##
| ##
+---------> x
0 1/n
As the spike travels left and collapses, but each spike carries exactly area .
Proof Sketch
-
Define . Each is measurable, , and .
-
By monotonicity of integration: , hence .
-
By the Monotone Convergence TheoremMonotone Convergence TheoremA bounded monotone sequence of reals always converges — the supremum is the limitRead more → applied to :
Connections
Fatou's lemma is the missing piece that turns the Monotone Convergence TheoremMonotone Convergence TheoremA bounded monotone sequence of reals always converges — the supremum is the limitRead more → into the Dominated Convergence TheoremDominated Convergence TheoremPointwise convergence plus a uniform integrable dominating bound lets you pass the limit inside the integralRead more →: DCT applies Fatou twice (to and to ) to sandwich the limit. It also appears in the proof of completeness of spaces, and in probability when proving lower semicontinuity of expected values.
Lean4 Proof
import Mathlib.MeasureTheory.Integral.Lebesgue.Add
open MeasureTheory Filter
/-- Fatou's lemma for the lower Lebesgue integral. -/
theorem fatou {α : Type*} {m : MeasurableSpace α} {μ : Measure α}
{f : ℕ → α → ℝ≥0∞} (hf : ∀ n, Measurable (f n)) :
∫⁻ x, liminf (fun n => f n x) atTop ∂μ ≤
liminf (fun n => ∫⁻ x, f n x ∂μ) atTop :=
lintegral_liminf_le hfReferenced by
- Dominated Convergence TheoremAnalysis
- Dominated Convergence TheoremAnalysis