Chan-Geyer CLT: geometric ergodicity with a -integrable rate constant and implies the CLT
ProvedMarkovChainCLT.clt_of_integrableGeometricRate_of_momentThe Chan-Geyer central limit theorem for a geometrically ergodic chain with a -integrable rate constant and a moment.
Let be a Markov transition kernel on , Harris ergodic with invariant probability (so and in total variation from every ), and let be measurable. Assume the total-variation convergence has a rate that is integrable in the sense of Jones eq. (3): there are with and with
and suppose a moment strictly beyond second order:
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 ,
Mathematical role. This is the Chan-Geyer CLT (Chan & Geyer 1994, as stated for MCMC by Jones, Corollary 2, first alternative), with the integrability of the rate constant made an explicit hypothesis rather than a hidden step. The moment requirement is strictly weaker than a -th moment and strictly stronger than the logarithmic condition that suffices in the same geometrically ergodic class: any moment controls the logarithmic moment, because uniformly, so this result follows from the logarithmic-moment theorem by an estimate that is purely scalar. Together with clt_of_integrableGeometricRate_of_log_moment it shows that both of Jones's geometric-ergodicity corollaries reduce to a single mixing statement once the rate constant is integrable.
Formalization Note The rate assumption is ErgodicWithRate P π M (fun n => t ^ n), whose bound holds for every and every ; total variation is the Markov-chain normalization . Powers are real powers, so the moment hypothesis reads Integrable (fun x => |f x| ^ (2 + δ)) π. The conclusion SatisfiesCLT P π f already quantifies over all initial distributions and uses sampleAvg, which omits the initial state ; is read as the point mass at .
import Mathlib.Analysis.SpecialFunctions.Pow.Real import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovChainPathMeasure open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal Topology ProbabilityTheory
theorem MarkovChainCLT.clt_of_integrableGeometricRate_of_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)
(δ : ℝ) (hδ : 0 < δ) (hmom : Integrable (fun x => |f x| ^ (2 + δ)) π) :
SatisfiesCLT P π f := by sorry