Fourth-moment inequality for bounded exponentially mixing sequences
ProvedMarkovChainCLT.integral_pow_four_partialSum_le_of_bounded_of_exp_alphaLet be a measurable, centered, strictly stationary real sequence on a probability space, uniformly bounded, everywhere, and with strong mixing coefficients decaying exponentially, with . Then the partial sums satisfy a fourth-moment bound of the same order as in the independent case: there is a constant , depending only on the law of the sequence, with
This is Ibragimov's moment inequality for strongly mixing sequences. Expanding as a sum over quadruples and splitting according to the largest of the three gaps, the covariance inequality for bounded variables bounds each term with a large outer gap by a multiple of , while the terms with a large middle gap produce, besides such an error, the products of two covariances. Summing, the number of quadruples with largest gap is of order , so the mixing contribution is bounded by , which is finite for an exponential rate, and the remaining product terms are because the covariance series converges absolutely.
The bound is the input that makes the truncated part of a partial sum bounded in after normalization by , and hence uniformly integrable.
import Definitions.Def_MixingCoefficients import Mathlib.Analysis.SpecialFunctions.Log.PosLog open MeasureTheory ProbabilityTheory Filter MarkovChainCLT open scoped ENNReal NNReal Topology ProbabilityTheory
theorem MarkovChainCLT.integral_pow_four_partialSum_le_of_bounded_of_exp_alpha
{Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) [IsProbabilityMeasure P] (X : ℕ → Ω → ℝ)
(hX : ∀ n, Measurable (X n)) (hstat : IsStrictlyStationary P X)
(hcent : ∫ ω, X 0 ω ∂P = 0)
(M : ℝ) (hM : ∀ i, ∀ ω, |X i ω| ≤ M)
(c a : ℝ) (ha0 : 0 ≤ a) (ha1 : a < 1)
(hα : ∀ n, alphaMixingCoef P X n ≤ c * a ^ n) :
∃ K : ℝ, 0 ≤ K ∧ ∀ n : ℕ,
∫ ω, (∑ i ∈ Finset.range n, X i ω) ^ 4 ∂P ≤ K * (n : ℝ) ^ 2 := by sorry