Lebesgue Differentiation Theorem
The Lebesgue Differentiation Theorem says that for a locally integrable function, averaging over smaller and smaller balls recovers the function's value at almost every point. It is the rigorous foundation for thinking of as an "infinitesimal average."
Statement
Let be a locally finite Borel measure on and . Then for -almost every :
In particular, almost every point is a Lebesgue density point for .
Visualization
Example: on , Lebesgue measure.
At each point , compute the average of over (symmetric ball of radius centred at ) as .
| small- average | limit () | ||
|---|---|---|---|
| (entire ball ) | |||
| (entire ball ) | |||
| (half the ball) | discontinuity |
At the average is always regardless of , not . This is the single exceptional point predicted by the theorem — a set of measure zero.
Ball averaging at :
f = 1 |######### | (indicator of [0,1/2])
| | |
0 x-r x x+r 1/2 1
Ball: entirely inside [0,1/2]
Average = 1 → f(x) = 1
Ball averaging at (boundary):
f = 1 |#####|
f = 0 | |#####
0 x-r x x+r
Half inside, half outside [0,1/2]
Average = 1/2 for all r — exceptional point
Proof Sketch
-
The key tool is the Vitali covering theorem / Besicovitch covering theorem: any family of balls satisfying a bounded overlap condition admits a subcollection covering a.e. every point.
-
Use the covering theorem to show the Hardy-Littlewood maximal operator is weak- bounded.
-
Approximate in by continuous functions (which satisfy the conclusion trivially by continuity). For small in , the maximal inequality controls the exceptional set where averages diverge from .
-
Conclude by a density argument: the set of where averages fail to converge has measure zero.
Connections
The theorem is the continuous analogue of Cauchy CriterionCauchy CriterionA sequence converges if and only if its terms eventually become arbitrarily close to each other — no candidate limit requiredRead more →: both characterise when a sequence (or family of averages) must converge. The differentiation theorem also gives the Radon-Nikodym theorem a differentiation interpretation: if , then a.e. — connecting it directly to Absolutely Continuous FunctionsAbsolutely Continuous FunctionsA function is absolutely continuous iff it is the integral of its derivative — the bridge between differentiation and Lebesgue integrationRead more →. Besicovitch's covering lemma is the same geometric tool underlying Hausdorff DimensionHausdorff DimensionMeasuring the fractional dimension of self-similar setsRead more → estimates.
Lean4 Proof
import Mathlib.MeasureTheory.Covering.Besicovitch
open MeasureTheory Besicovitch
/-- Lebesgue differentiation theorem: for a measurable set s, the density
μ(s ∩ B(x,r)) / μ(B(x,r)) converges a.e. to the indicator of s as r → 0. -/
theorem lebesgue_density {β : Type*} [MetricSpace β] [MeasurableSpace β]
[BorelSpace β] [SecondCountableTopology β] [HasBesicovitchCovering β]
{μ : Measure β} [IsLocallyFiniteMeasure μ]
{s : Set β} (hs : MeasurableSet s) :
∀ᵐ x ∂μ,
Filter.Tendsto (fun r => μ (s ∩ closedBall x r) / μ (closedBall x r))
(nhdsWithin 0 (Set.Ioi 0))
(nhds (s.indicator 1 x)) :=
Besicovitch.ae_tendsto_measure_inter_div_of_measurableSet μ hsReferenced by
- Absolutely Continuous FunctionsAnalysis