Existing in Mathlib · Measure theory and analysis
Fatou's Lemma
For a sequence of measurable nonnegative extended-real functions, the integral of the pointwise lower limit cannot exceed the lower limit of the integrals.
- Fatou's lemma
- lower Lebesgue integral
- limit inferior
- extended nonnegative real functions
- monotone convergence
Exact theorem
Exact Mathlib statement
theorem MeasureTheory.lintegral_liminf_le {α : Type*} {m : MeasurableSpace α} {μ : Measure α} {f : ℕ → α → ℝ≥0∞} (h_meas : ∀ n, Measurable (f n)) : ∫⁻ a, liminf (fun n => f n a) atTop ∂μ ≤ liminf (fun n => ∫⁻ a, f n a ∂μ) atTopThe theorem at a glance
Fatou's Lemma — a one-sided lower-limit bound
A visual guide to the theorem's hypotheses, structure, and conclusion; the exact statement gives the formal detail.
Fatou's Lemma — a one-sided lower-limit bound

Detailed visual description
The poster keeps the original sequence visibly nonmonotone while gold pointwise tail-infimum profiles rise beneath it. The checked route rewrites liminf as a supremum of tail infima, passes that supremum through the lower integral, compares each tail floor with the tail integrals, and reconstructs the liminf.
Statement structure
Statement and scope
Read the exact Mathlib declaration
This map summarizes the statement's structure; the exact Mathlib declaration remains authoritative.
Fatou's Lemma — scientific diagram

Detailed visual description
This page indexes Mathlib's Fatou lemma for a sequence of measurable functions f n : α → ℝ≥0∞. It compares the lower Lebesgue integral of the pointwise liminf with the liminf of the lower Lebesgue integrals. Nonnegativity is encoded by the extended nonnegative reals, and the declaration assumes neither convergence of the sequence nor finiteness of the integrals. It does not state equality, a reverse inequality, a signed- or Bochner-integral theorem, or a quantitative rate.
Why it matters
A mathematical landmark
Fatou's lemma is a foundational lower-semicontinuity principle for integration. It controls the integral of a pointwise lower limit without requiring the sequence itself to converge and is a standard gateway to stronger convergence theorems.
ProofAtlas record
What has been checked
Mathlib is the source of the theorem; the local Lean replay and page review are separate.
Claim boundary
No new theorem is claimed
This page indexes Mathlib's Fatou lemma for a sequence of measurable functions f n : α → ℝ≥0∞. It compares the lower Lebesgue integral of the pointwise liminf with the liminf of the lower Lebesgue integrals. Nonnegativity is encoded by the extended nonnegative reals, and the declaration assumes neither convergence of the sequence nor finiteness of the integrals. It does not state equality, a reverse inequality, a signed- or Bochner-integral theorem, or a quantitative rate.
- The selected declaration is one-sided: it does not assert equality or the reverse inequality.
- It does not assume that the sequence converges, is monotone, or has finite integrals.
- It is the ℝ≥0∞-valued lower-Lebesgue-integral form, not a signed- or Bochner-integral statement.
- Proof Atlas did not originate Fatou's lemma or Mathlib's declaration.
- The generated explanation and visuals are not proof evidence.
Source and local evidence
Where the theorem comes from
- Existing declaration
MeasureTheory.lintegral_liminf_lein mathlib- Relationship
- The checked artifact is the upstream declaration itself
- Local Lean evidence
artifact.library.mathlib.fatou-lemma.v001