Chan–Geyer and polynomial-ergodicity CLTs (Jones Cor 2)
OpenMarkovChainCLT.clt_of_geometric_or_polynomialLet 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 . Assume one of the following three conditions: (1) the chain is geometrically ergodic and for some ; (2) the chain is polynomially ergodic of order with for the rate constant , and for some with ; (3) the chain is polynomially ergodic of order with , and -almost surely for some .
Then the chain satisfies the central limit theorem for : there is a single asymptotic variance such that for every initial distribution of the chain,
Case (1) is the Chan–Geyer CLT, the most frequently cited sufficient condition in the MCMC literature; cases (2)–(3) are its polynomial analogues.
Formalization Note "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
open MeasureTheory ProbabilityTheory Filter
open scoped ENNReal NNReal Topology ProbabilityTheory
/-- **Corollary 2** (case 1: Chan–Geyer 1994): a Harris ergodic chain satisfying one
of: (1) geometric ergodicity with `E_π |f|^{2+δ} < ∞` for some `δ > 0`;
(2) polynomial ergodicity of order `m` with integrable constant and
`E_π |f|^{2+δ} < ∞` with `mδ > 2+δ`; (3) polynomial ergodicity of order `m > 1`
with integrable constant and `f` bounded `π`-a.s. — satisfies the CLT for every
initial distribution. -/
theorem MarkovChainCLT.clt_of_geometric_or_polynomial {X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P] (π : Measure X) [IsProbabilityMeasure π]
(hP : HarrisErgodic P π) (f : X → ℝ) (hf : Measurable f)
(hcase :
(GeometricallyErgodic P π ∧
∃ δ : ℝ, 0 < δ ∧ Integrable (fun x => |f x| ^ (2 + δ)) π) ∨
(∃ m δ : ℝ, 0 < δ ∧ 2 + δ < m * δ ∧ PolynomiallyErgodicL1 P π m ∧
Integrable (fun x => |f x| ^ (2 + δ)) π) ∨
(∃ m : ℝ, 1 < m ∧ PolynomiallyErgodicL1 P π m ∧
∃ B : ℝ, ∀ᵐ x ∂π, |f x| < B)) :
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, junk value if unbounded, and the set contains via ). (2) is measurable. (3) A three-way disjunction — at least one of the following holds: (A) [geometric case] is geometrically ergodic for : there exist and with for all (no measurability or integrability of is required), , and for every and every ( is the ordinary natural-number power; nothing is asserted at ); and there exists a real such that is integrable with respect to (real-exponent power of the nonnegative base, ). (B) [polynomial case with moment] there exist reals with , , such that is polynomially ergodic in the sense with exponent : there exists , pointwise nonnegative and integrable with respect to , with for every and every (here is the real number raised to the real exponent ; only is constrained); and is integrable with respect to . (C) [polynomial case with bounded ] there exists a real with such that is polynomially ergodic in the sense with exponent (same unfolding as in (B)); and there exists a real (with no positivity constraint stated) such that strictly for -almost every . 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 ); 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).