Exponential -mixing with a moment gives absolutely summable autocovariances
ProvedMarkovChainCLT.summable_covariance_of_exp_alpha_of_log_momentLet be a measurable, centered, strictly stationary real-valued sequence on a probability space whose strong mixing coefficients decay exponentially, for some constant and some , and which satisfies the moment condition
Then the positive-lag autocovariance series is absolutely convergent:
This isolates the covariance-control component of the Doukhan–Massart–Rio central limit theorem (Jones, Theorem 6): it is what makes the asymptotic-variance series well defined. In the source the bound comes from Rio's covariance inequality in terms of the quantile function of and the mixing rate, for which the moment together with exponential decay of is exactly the summability condition.
Formalization Note Positive lags are indexed as for , and real summability is unconditional, hence equivalent to absolute convergence. The stated moment already implies , so square-integrability is not assumed separately.
import Definitions.Def_MixingCoefficients import Mathlib.Analysis.SpecialFunctions.Log.PosLog open MeasureTheory ProbabilityTheory
/-- The covariance-control component of the Doukhan–Massart–Rio CLT. -/
theorem MarkovChainCLT.summable_covariance_of_exp_alpha_of_log_moment
{Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → ℝ)
(hY : ∀ n, Measurable (Y n)) (hstat : IsStrictlyStationary P Y)
(hcent : ∫ ω, Y 0 ω ∂P = 0)
(c a : ℝ) (ha0 : 0 ≤ a) (ha1 : a < 1)
(hα : ∀ n, alphaMixingCoef P Y n ≤ c * a ^ n)
(hmom : Integrable (fun ω => (Y 0 ω) ^ 2 * Real.posLog |Y 0 ω|) P) :
Summable (fun k : ℕ => ∫ ω, Y 0 ω * Y (k + 1) ω ∂P) := by sorry