Variance asymptotics:
ProvedMarkovChainCLT.tendsto_inv_mul_integral_sq_partialSumLet be a measurable, strictly stationary real sequence on a probability space with , write and , and assume that the positive-lag autocovariance series converges. Then the variance of the partial sums grows linearly, with slope the asymptotic variance:
This is the standard variance asymptotics underlying every central limit theorem for stationary sequences: it is what identifies the limiting Gaussian variance and, when , what makes the two natural normalizations and interchangeable.
Stationarity gives , so expanding the square yields , and after dividing by the weights increase to while being dominated by the summable sequence .
Formalization Note Sequences are indexed from , so ; the asymptotic variance is the platform's seqAsymptoticVariance, namely .
import Definitions.Def_MixingCoefficients open MeasureTheory ProbabilityTheory Filter MarkovChainCLT open scoped ENNReal NNReal Topology ProbabilityTheory
theorem MarkovChainCLT.tendsto_inv_mul_integral_sq_partialSum
{Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → ℝ)
(hY : ∀ n, Measurable (Y n)) (hstat : IsStrictlyStationary P Y)
(hL2 : MemLp (Y 0) 2 P)
(hsum : Summable fun k : ℕ => ∫ ω, Y 0 ω * Y (k + 1) ω ∂P) :
Tendsto (fun n : ℕ => (n : ℝ)⁻¹ * ∫ ω, (∑ i ∈ Finset.range n, Y i ω) ^ 2 ∂P) atTop
(𝓝 (seqAsymptoticVariance P Y)) := by sorry