Variance convergence for partial sums under summable autocovariances
ProvedMarkovChainCLT.var_partialSum_div_tendsto_of_summable_covcentral-limit-theoremmixing-processesprobability
Let be a centered strictly stationary real-valued sequence on a probability space with , and assume its positive-lag autocovariances are absolutely summable, . Write and
Then the normalized variances converge,
This is the variance half of the summable- central limit theorem (Jones, Theorem 7; Ibragimov 1975): stationarity turns into with , and absolute summability makes the Cesaro-weighted correction vanish. It separates the second-moment computation from the blocking argument that upgrades variance convergence to convergence in distribution.
Formalization Note Lean states the limit with Filter.Tendsto toward nhds of seqAsymptoticVariance P Y, the platform's definition; the series is the honest limit under the summability hypothesis.
Preamble
import Definitions.Def_MixingCoefficients open MeasureTheory ProbabilityTheory Filter MarkovChainCLT open scoped ENNReal NNReal Topology ProbabilityTheory /-- The variance-convergence component of the summable-rho CLT. -/
Formal statement
theorem MarkovChainCLT.var_partialSum_div_tendsto_of_summable_cov
{Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → ℝ)
(hY : ∀ n, Measurable (Y n)) (hstat : IsStrictlyStationary P Y)
(hcent : ∫ ω, Y 0 ω ∂P = 0) (hL2 : MemLp (Y 0) 2 P)
(hsum : Summable (fun k : ℕ => ∫ ω, Y 0 ω * Y (k + 1) ω ∂P)) :
Tendsto (fun n : ℕ => Var[∑ i ∈ Finset.range n, Y i; P] / (n : ℝ))
atTop (𝓝 (seqAsymptoticVariance P Y)) := by sorry
Source
G. L. Jones, On the Markov Chain Central Limit Theorem, Probability Surveys 1 (2004) 299-320, https://arxiv.org/abs/math/0409112, Theorem 7 and eq. (12); original result: I. A. Ibragimov, Theory of Probability and Its Applications 20 (1975). Variance-convergence step of the proof.