Jones's Corollary 3 with a -integrable geometric rate constant: implies the CLT
ProvedMarkovChainCLT.clt_of_integrableGeometricRate_of_log_momentThe Chan-Geyer central limit theorem for a geometrically ergodic chain with a -integrable rate constant.
Let be a Markov transition kernel on a measurable space , Harris ergodic with invariant probability distribution — meaning is invariant and in total variation from every starting point — and let be measurable. Suppose the convergence comes with a rate that is integrable in the sense of Jones, eq. (3): there are with and such that
and suppose moreover the logarithmic moment condition
Then satisfies the central limit theorem for the chain: there is such that, for every initial distribution , under the law of the chain started from ,
Why the rate constant must be integrable. This is Jones's Corollary 3 with the hypothesis that its proof actually consumes. The route of record — Theorem 6 applied to the chain, fed by Theorem 2(ii) — needs a bound on the strong mixing coefficients of the form , and that inequality is derived from eq. (3) only when is -integrable. Geometric ergodicity as defined in Def_MarkovErgodicity provides a finite pointwise constant, not an integrable one: the countdown chain on the countable–cocountable space exhibits geometric ergodicity with no -integrable rate constant at all. Making a hypothesis rather than a lemma isolates exactly the missing ingredient; compare PolynomiallyErgodicL1, which already requires Integrable M π in its own definition, so that the geometric case is the only asymmetric one.
Formalization Note The rate assumption is stated as ErgodicWithRate P π M (fun n => t ^ n), whose bound quantifies over all and all ; total variation uses the Markov-chain normalization of Def_TotalVariationDist. The conclusion is the property SatisfiesCLT P π f, which already ranges over all initial distributions, with sampleAvg omitting the initial point , and read as the point mass at .
import Mathlib.Analysis.SpecialFunctions.Log.PosLog import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovChainPathMeasure open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal Topology ProbabilityTheory
theorem MarkovChainCLT.clt_of_integrableGeometricRate_of_log_moment {X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P] (π : Measure X) [IsProbabilityMeasure π]
(hP : HarrisErgodic P π) (f : X → ℝ) (hf : Measurable f)
(M : X → ℝ) (hM0 : ∀ x, 0 ≤ M x) (hM : Integrable M π)
(t : ℝ) (ht0 : 0 ≤ t) (ht1 : t < 1)
(hrate : ErgodicWithRate P π M fun n => t ^ n)
(hmom : Integrable (fun x => f x ^ 2 * Real.posLog |f x|) π) :
SatisfiesCLT P π f := by sorry