Markov chain CLT for a bounded observable of a uniformly ergodic chain
ProvedMarkovChainCLT.clt_of_bounded_of_uniformlyErgodiccentral-limit-theoremmarkov-chainmartingale-approximationprobabilityuniform-ergodicity
The central limit theorem for a bounded observable of a uniformly ergodic Markov chain. If is uniformly ergodic with invariant probability and is bounded and measurable, then for every initial distribution ,
where solves the Poisson equation . This is Corollary 5 of Jones' survey restricted to bounded — the case in which the whole argument can be carried out with bounded quantities only.
The proof is Gordin's martingale approximation, made completely elementary. Uniform ergodicity gives a bounded solution of the Poisson equation, and the partial sums decompose exactly as
- The are martingale differences for the natural filtration of the chain — this is exactly the Markov property in conditional-expectation form — and they are bounded by , so the triangular array satisfies pathwise and .
- Its quadratic variation converges: in at rate , obtained by expanding into two sample averages of bounded functions of a single coordinate — handled by the mean-square law of large numbers — plus a predictably weighted martingale transform, which vanishes. No ergodic theorem is used anywhere.
- The martingale central limit theorem for bounded arrays then gives , and the remainder is uniformly, hence negligible in probability.
- Finally, the geometric total-variation rate transfers the stationary limit law to an arbitrary initial distribution.
Nonnegativity of comes from Jensen's inequality together with the invariance , so the limit really is a Gaussian law (possibly degenerate).
Preamble
import Definitions.Def_MarkovChainPathMeasure import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovIterKernel import Mathlib.Probability.Kernel.Invariance import Mathlib.MeasureTheory.Integral.Bochner.Set open Filter Finset Function MeasurableEquiv MeasurableSpace MeasureTheory Preorder ProbabilityTheory open MarkovChainCLT open scoped ENNReal NNReal Topology ProbabilityTheory
Formal statement
theorem MarkovChainCLT.clt_of_bounded_of_uniformlyErgodic {X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P] (π : Measure X) [IsProbabilityMeasure π]
(hinv : Kernel.Invariant P π) (huni : UniformlyErgodic P π)
(f : X → ℝ) (hf : Measurable f) (B : ℝ) (hB : ∀ x, |f x| ≤ B) :
SatisfiesCLT P π f := by sorrySource
M. I. Gordin and B. A. Lifsic, "The central limit theorem for stationary Markov processes", Soviet Math. Dokl. 19 (1978) 392-394; I. A. Ibragimov and Yu. V. Linnik, Independent and Stationary Sequences of Random Variables, Wolters-Noordhoff 1971; L. Tierney, "Markov Chains for Exploring Posterior Distributions", Annals of Statistics 22 (1994) 1701-1728; G. L. Jones, "On the Markov Chain Central Limit Theorem", Probability Surveys 1 (2004) 299-320, Corollary 5.