Absolutely Continuous Functions
Absolute continuity is the property that distinguishes functions arising as Lebesgue integrals from the larger class of functions of bounded variation. The Radon-Nikodym theorem gives the precise measure-theoretic statement: if and only if has a density with respect to .
Statement
A function is absolutely continuous if for every there exists such that for any finite collection of disjoint subintervals ,
Fundamental theorem of Lebesgue integration: is absolutely continuous on if and only if there exists such that
In this case almost everywhere.
Radon-Nikodym theorem (measure-theoretic form): If and are -finite measures and (meaning ), then there exists a measurable function such that -with-density , i.e.,
Visualization
Cantor function vs. an AC function — comparison:
The Cantor function is continuous, monotone, a.e. (it is constant on each removed interval), yet and . It is not absolutely continuous.
The AC function satisfies a.e.
| Cantor | |||
|---|---|---|---|
| jumps | |||
The Cantor function "hides" its total variation on a set of measure zero (the Cantor set). AC functions cannot do this.
Why AC fails for Cantor: Take disjoint intervals of total length from the complement of the Cantor set. The function changes by at most total — fine. But intervals inside the Cantor set (measure zero, but uncountably many) account for the entire variation from to .
Variation budget: [ AC function: proportional to length ]
[ Cantor function: can be 1 with total length → 0 ]
Proof Sketch
-
(If ): Given , set ... wait, use uniform integrability of : since , for any there is with whenever . Then .
-
(Only if): If is AC, define (the Lebesgue-Stieltjes measure). Then AC implies (Lebesgue measure). By Radon-Nikodym, -with-density for some , giving .
-
Differentiating via the Lebesgue Differentiation TheoremLebesgue Differentiation TheoremFor locally integrable f, the ball averages of f converge to f(x) at almost every point xRead more → recovers a.e.
Connections
The Radon-Nikodym theorem is the measure-theoretic backbone of conditional expectation in probability (see Bayes' TheoremBayes' TheoremReversing conditional probability to update beliefs from evidenceRead more →) and of the Hahn decomposition. The characterisation of AC functions is the precise form of the Fundamental Theorem of CalculusFundamental Theorem of CalculusIntegration and differentiation are inverse operationsRead more → for Lebesgue integration. Singular functions like the Cantor function illustrate that Monotone Convergence TheoremMonotone Convergence TheoremA bounded monotone sequence of reals always converges — the supremum is the limitRead more → arguments can fail unless absolute continuity is verified.
Lean4 Proof
import Mathlib
open MeasureTheory Measure
/-- Radon-Nikodym theorem: if ν ≪ μ (absolutely continuous), then ν has a
measurable density (Radon-Nikodym derivative) with respect to μ. -/
theorem radon_nikodym {α : Type*} [MeasurableSpace α]
{μ ν : Measure α} [SigmaFinite μ] [HaveLebesgueDecomposition ν μ]
(h : ν ≪ μ) :
ν = μ.withDensity (ν.rnDeriv μ) :=
(withDensity_rnDeriv_eq ν μ h).symmReferenced by
- Lebesgue Differentiation TheoremAnalysis