Summable with a moment implies absolute autocovariance summability
ProvedMarkovChainCLT.summable_covariance_of_alpha_pow_summableLet be a measurable, centered, strictly stationary real-valued sequence on a probability space , and suppose that for some the moment is finite. Write for the strong mixing coefficient of the sequence at lag (the supremum over of over and ). If
then the positive-lag autocovariance series is absolutely convergent:
This isolates the covariance-control component of the moment case of the Ibragimov–Linnik central limit theorem (Jones, Theorem 5, condition 2): it is what makes the asymptotic-variance series well defined. The classical route is the covariance inequality for strongly mixing pairs with moments, 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 moment hypothesis is stated as integrability of with a real exponent.
import Definitions.Def_MixingCoefficients import Mathlib.Analysis.SpecialFunctions.Pow.Real open MeasureTheory ProbabilityTheory
/-- The covariance-control component of the Ibragimov–Linnik moment-case CLT. -/
theorem MarkovChainCLT.summable_covariance_of_alpha_pow_summable
{Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → ℝ)
(hY : ∀ n, Measurable (Y n)) (hstat : IsStrictlyStationary P Y)
(hcent : ∫ ω, Y 0 ω ∂P = 0)
(δ : ℝ) (hδ : 0 < δ) (hmom : Integrable (fun ω => |Y 0 ω| ^ (2 + δ)) P)
(hα : Summable (fun n => alphaMixingCoef P Y n ^ (δ / (2 + δ)))) :
Summable (fun k : ℕ => ∫ ω, Y 0 ω * Y (k + 1) ω ∂P) := by sorry