(Cogburn--Ibragimov inequality)
ProvedMarkovChainCLT.rhoMixingCoef_le_two_mul_sqrt_phiMixingCoefLet be a sequence of random variables on a probability space , and for a lag let
be the uniform (-) mixing coefficient and let be the maximal-correlation (-) mixing coefficient, the supremum of over square-integrable measurable for the past and measurable for the future .
Then the two coefficients are comparable through
Equivalently, at the level of two -fields , this is the classical inequality of Cogburn and Ibragimov: for and ,
Taking the supremum over lags on both sides and using monotonicity of the square root gives the stated form for sequences.
This is the bridge from uniform mixing to maximal-correlation mixing: it turns the summability hypothesis of the Billingsley uniform-mixing central limit theorem into the summability hypothesis of the Ibragimov -mixing central limit theorem.
import Definitions.Def_MixingCoefficients open MeasureTheory ProbabilityTheory /-- The Cogburn-Ibragimov comparison of the maximal-correlation and uniform mixing coefficients of a sequence. -/
theorem MarkovChainCLT.rhoMixingCoef_le_two_mul_sqrt_phiMixingCoef
{Ω E : Type*} [MeasurableSpace Ω] [MeasurableSpace E]
(P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → E) (n : ℕ) :
rhoMixingCoef P Y n ≤ 2 * Real.sqrt (phiMixingCoef P Y n) := by sorry