Remark 6: a CLT under the stationary start holds for every initial distribution
ProvedMarkovChainCLT.satisfiesCLT_of_centered_functional_cltLet be a Harris ergodic Markov chain with invariant distribution and let be measurable. Write for the centred functional process and for its asymptotic variance series, both computed under the stationary chain. Assume the conclusion delivered by each of the mixing central limit theorems of this mission, namely that the covariance series converges absolutely and that
where . Then the chain satisfies the central limit theorem for in the full sense of eq. (1): there is a single such that, for every initial distribution,
Two things are being supplied here. First, the normalisation bookkeeping: , together with the degenerate case , in which absolute convergence of the covariance series forces , so in and hence in distribution to the point mass at , which is . Second, and substantively, this is Remark 6 of the source: for a Harris ergodic chain, if a CLT holds for one initial distribution then it holds for every initial distribution (Meyn & Tweedie 1993, Proposition 17.1.6). That is precisely what upgrades the stationary-start statement produced by Theorems 5-8 to the "for any initial distribution" conclusion of Corollaries 1-5.
This lemma is the shared final step of Jones's proofs of Corollaries 1, 3, 4 and 5, each of which ends with "the result follows from the Theorem and Remark 6".
import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovChainPathMeasure import Definitions.Def_MixingCoefficients open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal Topology ProbabilityTheory
theorem MarkovChainCLT.satisfiesCLT_of_centered_functional_clt {X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P] (π : Measure X) [IsProbabilityMeasure π]
(hP : HarrisErgodic P π) (f : X → ℝ) (hf : Measurable f) (hL2 : MemLp f 2 π)
(hsum : Summable (fun k : ℕ => ∫ ω, (f (ω 0) - ∫ x, f x ∂π) *
(f (ω (k + 1)) - ∫ x, f x ∂π) ∂(chainMeasure P π)))
(hclt : 0 < seqAsymptoticVariance (chainMeasure P π)
(fun i ω => f (ω i) - ∫ x, f x ∂π) →
TendstoInDistribution
(fun (n : ℕ) (ω : ℕ → X) => (Real.sqrt n)⁻¹ *
∑ i ∈ Finset.range n, (f (ω i) - ∫ x, f x ∂π))
atTop (id : ℝ → ℝ) (fun _ => chainMeasure P π)
(gaussianReal 0 (seqAsymptoticVariance (chainMeasure P π)
(fun i ω => f (ω i) - ∫ x, f x ∂π)).toNNReal)) :
SatisfiesCLT P π f := by sorry