Geometric ergodicity CLT under (Jones Cor 3)
ProvedMarkovChainCLT.clt_of_geometric_of_log_momentLet 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 . Suppose the chain is geometrically 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 refines the Chan–Geyer condition: for geometrically ergodic chains a logarithmic sliver above square-integrability suffices (and, by the counterexamples cited in the source, a bare second moment does not).
Formalization Note The stated moment already implies , so it is not assumed separately. "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.
import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovChainPathMeasure import Mathlib.Analysis.SpecialFunctions.Log.PosLog open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal Topology ProbabilityTheory /-- **Corollary 3**: a geometrically ergodic Harris chain with `E_π[f² log⁺|f|] < ∞` satisfies the CLT for every initial distribution. -/
theorem MarkovChainCLT.clt_of_geometric_of_log_moment {X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P] (π : Measure X) [IsProbabilityMeasure π]
(hP : HarrisErgodic P π) (f : X → ℝ) (hf : Measurable f)
(hgeo : GeometricallyErgodic P π)
(hmom : Integrable (fun x => f x ^ 2 * Real.posLog |f x|) π) :
SatisfiesCLT P π f := by sorry