Bounded sequence with summable has absolutely summable autocovariances
ProvedMarkovChainCLT.summable_covariance_of_bounded_of_summable_alphaLet be a measurable, centered, strictly stationary real-valued sequence on a probability space , uniformly bounded in the sense that for some constant , almost surely for every . Write for the strong mixing coefficient of the sequence at lag . If
then the positive-lag autocovariance series is absolutely convergent:
This isolates the covariance-control component of the bounded case of the Ibragimov–Linnik central limit theorem (Jones, Theorem 5, condition 1): it is what makes the asymptotic-variance series well defined. The classical route is the covariance inequality for bounded strongly mixing pairs, whose lag- bound is a constant multiple of .
Formalization Note Positive lags are indexed as for , and real summability is unconditional, hence equivalent to absolute convergence. The bound is stated almost surely for each time index separately.
import Definitions.Def_MixingCoefficients open MeasureTheory ProbabilityTheory
/-- The covariance-control component of the Ibragimov–Linnik bounded-case CLT. -/
theorem MarkovChainCLT.summable_covariance_of_bounded_of_summable_alpha
{Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → ℝ)
(hY : ∀ n, Measurable (Y n)) (hstat : IsStrictlyStationary P Y)
(hcent : ∫ ω, Y 0 ω ∂P = 0)
(B : ℝ) (hB : ∀ n, ∀ᵐ ω ∂P, |Y n ω| < B)
(hα : Summable (fun n => alphaMixingCoef P Y n)) :
Summable (fun k : ℕ => ∫ ω, Y 0 ω * Y (k + 1) ω ∂P) := by sorry