Weak Convergence (Distribution)
Statement
Let be a metric space and probability measures on the Borel -algebra. The sequence converges weakly (in distribution) to , written , if for every bounded continuous function :
Equivalent characterisations (Portmanteau theorem):
- for all closed .
- for all open .
- for all with .
- at all continuity points of (when ).
Visualization
Empirical CDFs of converging weakly to (point mass at ) for :
CDF of Bin(n, 1/2)/n (normalized)
n=5:
1 | ╔══════════
| ╔════╝
0 |════════╝
+---0---0.5---1
n=20:
1 | ╔══════════════
| ╔══╝
0 |═══════╝
+---0---0.5---1
n=100:
1 | ╔═══════════════
| ══╝
0 |══════
+---0---0.5---1
n → ∞: CDF approaches Heaviside step at x = 0.5:
1 | ╔══════════════
| ║
0 |═══════╝
+---0---0.5---1 (Dirac δ_{0.5})
The empirical means a.s. by the Strong Law of Large NumbersStrong Law of Large NumbersThe sample mean of i.i.d. integrable random variables converges almost surely to the population meanRead more →, and the distributions converge weakly to .
Proof Sketch
- Topology on probability measures. The weak topology on is the coarsest making continuous for all .
- Metrization. On Polish spaces, weak convergence is metrizable (e.g., Prokhorov metric or bounded Lipschitz distance).
- Characterisation. Equivalence of the four Portmanteau conditions follows by approximating indicator functions of open/closed sets by continuous functions (Urysohn's lemma) and monotone convergence.
- Tightness and Prokhorov. A family is tight iff every subsequence has a weakly convergent sub-subsequence (Prokhorov's theorem on Polish spaces).
Connections
The Central Limit TheoremCentral Limit TheoremStandardized sums of i.i.d. finite-variance random variables converge in distribution to the standard normalRead more → is precisely a weak convergence statement: the distributions of converge weakly to . The Characteristic FunctionCharacteristic FunctionThe characteristic function φ_X(t) = E[exp(itX)] uniquely determines the distribution of a random variableRead more → is continuous with respect to weak convergence (Lévy continuity theorem), making it the main tool for proving weak convergence. The underlying topology on probability measures is studied via Heine–Borel TheoremHeine–Borel TheoremIn ℝⁿ, a subset is compact if and only if it is closed and boundedRead more →-type compactness arguments (Prokhorov's theorem).
Lean4 Proof
import Mathlib.MeasureTheory.Measure.ProbabilityMeasure
open MeasureTheory BoundedContinuousFunction Filter
/-- Weak convergence of probability measures: convergence in the weak topology
is equivalent to convergence of integrals of bounded continuous functions.
Mathlib: `MeasureTheory.ProbabilityMeasure.tendsto_iff_forall_integral_tendsto`. -/
theorem weak_convergence_iff
{Ω : Type*} [TopologicalSpace Ω] [MeasurableSpace Ω] [BorelSpace Ω]
{γ : Type*} {F : Filter γ}
{μs : γ → ProbabilityMeasure Ω} {μ : ProbabilityMeasure Ω} :
Tendsto μs F (𝓝 μ) ↔
∀ f : Ω →ᵇ ℝ, Tendsto
(fun i => ∫ ω, f ω ∂(μs i : Measure Ω))
F
(𝓝 (∫ ω, f ω ∂(μ : Measure Ω))) :=
ProbabilityMeasure.tendsto_iff_forall_integral_tendstoReferenced by
- Characteristic FunctionProbability