The Markov Chain Central Limit TheoremResearch Paper
Markov chain Monte Carlo turns hard integration problems into long simulations: to estimate an expectation one runs a Markov chain with stationary distribution and reports the sample average . The ergodic theorem guarantees , but honest error bars require more: a central limit theorem
On general state spaces this is famously delicate - a merely ergodic chain with a square-integrable functional can fail the CLT, so the classical theory trades convergence rates (drift, minorization, geometric or polynomial total-variation rates) and mixing conditions (-, -, -mixing) against moment conditions on . This mission formalizes G. L. Jones's survey "On the Markov chain central limit theorem" (Probability Surveys, 2004): the drift-condition CLTs of Meyn-Tweedie and Jarner-Roberts, the classical mixing CLTs of Ibragimov-Linnik, Doukhan-Massart-Rio and Billingsley, the characterizations via uniform integrability and boundedness in probability, and their assembly into the summary theorem: six practically checkable regimes - from polynomial ergodicity with bounded functionals to uniform ergodicity with second moments - each of which guarantees the CLT for every initial distribution. The stationarity, total-variation and mixing infrastructure is general state space and reusable well beyond this mission.
theorem MarkovChainCLT.markov_chain_clt {X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P] (π : Measure X) [IsProbabilityMeasure π]
(hP : HarrisErgodic P π) (f : X → ℝ) (hf : Measurable f)
(hcase :
(∃ m : ℝ, 1 < m ∧ PolynomiallyErgodicL1 P π m ∧
∃ B : ℝ, ∀ᵐ x ∂π, |f x| < B) ∨
(∃ m δ : ℝ, 0 < δ ∧ 2 + δ < m * δ ∧ PolynomiallyErgodicL1 P π m ∧
Integrable (fun x => |f x| ^ (2 + δ)) π) ∨
(GeometricallyErgodic P π ∧
∃ δ : ℝ, 0 < δ ∧ Integrable (fun x => |f x| ^ (2 + δ)) π) ∨
(GeometricallyErgodic P π ∧
Integrable (fun x => f x ^ 2 * Real.posLog |f x|) π) ∨
(GeometricallyErgodic P π ∧ Kernel.IsReversible P π ∧ MemLp f 2 π) ∨
(UniformlyErgodic P π ∧ MemLp f 2 π)) :
SatisfiesCLT P π f := by sorry
Let be a Markov chain with transition kernel on a state space , Harris ergodic with invariant probability distribution , and let be measurable. Write for the sample average and . Assume one of the following six conditions:
- the chain is polynomially ergodic of order with for the rate constant , and -almost surely for some ;
- the chain is polynomially ergodic of order with , and for some with ;
- the chain is geometrically ergodic and for some ;
- the chain is geometrically ergodic and ;
- the chain is geometrically ergodic, reversible with respect to (detailed balance), and ;
- the chain is uniformly ergodic and .
Then the chain satisfies the central limit theorem for : there is a single asymptotic variance such that for every initial distribution of the chain,
This is the summary theorem of the source and the goal of the mission: six practically checkable regimes, each guaranteeing honest error bars for Markov chain Monte Carlo estimates, assembled from the drift, mixing, and moment machinery of the milestones.
Formalization Note "Harris ergodic" is encoded by its total-variation characterization: is invariant for and for every starting point (equivalent to the classical aperiodic, -irreducible, positive Harris recurrent definition; the "every " quantifier is exactly the Harris property). Convergence in distribution is weak convergence of laws, and is read as the point mass at , which absorbs the source's "" caveat.
Frontier · Open leaf nodes
- MarkovChainCLT.clt_of_exp_alpha_of_log_moment
- MarkovChainCLT.geometricallyErgodic_integrable_rate
- MarkovChainCLT.clt_of_summable_rho
- MarkovChainCLT.clt_of_moment_of_alpha_pow_summable
- MarkovChainCLT.chain_condExp_future_bridge
- MarkovChainCLT.reversible_indicator_decay_centered_L2_operator_model
Recent activity
- SKETCH_ACCEPTEDLukeBerneseAug 15, 2026