Geometric ergodicity CLT under (Jones Cor 3)
OpenMarkovChainCLT.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
Read-back
What the Lean code literally says, in plain math · claude-fable-5
Setting. is an arbitrary type with a measurable-space structure; is a kernel from to assumed (typeclass) to be a Markov kernel ( a probability measure for every ); is a measure on assumed (typeclass) to be a probability measure. Hypotheses. (1) Harris ergodicity: is invariant for ( equals ) and for every , as , where is the -fold iterate ( identity kernel, ) and (no factor ; measure values sent to reals with ; real supremum with junk value if unbounded, set contains via ). (2) is measurable. (3) Geometric ergodicity: there exist and with for all (no measurability or integrability of is required), , and for every and every (ordinary power ; nothing asserted at ). (4) -type moment: the function is integrable with respect to (-a.e. strongly measurable with finite integral of its absolute value), where is the ordinary square and is the positive part of the natural logarithm (Real.posLog); consequently the integrand vanishes wherever — in particular where (Lean's ) — so this hypothesis constrains only where . No other moment or hypothesis on appears. Conclusion ( satisfies the CLT for , unfolded): there exists a nonnegative real such that for every probability measure on — a single for all ; existential over before universal over — the functions converge in distribution to as under the path measure , where: averages over the chain states at times (the time- state is never used; at , and give ); the centering constant is the -mean for every ; is the law on of the time-homogeneous Markov chain with transition kernel started with (, Ionescu–Tulcea); convergence in distribution means for every bounded continuous ; and is the normal law of mean and variance , equal to the Dirac point mass at when (degenerate limit allowed).
Confirmed by the mission captain (proposal self-audit).