Bounded covariance inequality for a pair of sigma-algebras
ProvedMarkovChainCLT.alphaPair_bounded_covBounded covariance inequality for two sub--algebras.
Let be a probability space and let be sub--algebras. Take random variables with -measurable, -measurable, and non-negative variables bounded by deterministic caps , . Then their covariance satisfies
where is the
pair-level strong mixing coefficient (alphaPair), and .
Role. This is the bounded case of Ibragimov's covariance inequality and the exact intermediate step needed for the decay estimate : applying it to the truncated variables and optimizing the truncation level against the tail terms produced by Hölder's inequality gives Ibragimov's rate. The bilinear dependence on the caps (, not ) is what makes that optimization close.
Proof method. Layer-cake (tail formula) applied to with respect to two measures - itself, and the finite measure with density - followed by a level-by-level bound. At level one has , whose absolute value is at most by the per-level mixing estimate; integrating that constant bound over produces . No Fubini theorem on the product space is required.
import Definitions.Def_AlphaPair open MeasureTheory ProbabilityTheory MarkovChainCLT
theorem MarkovChainCLT.alphaPair_bounded_cov {Ω : Type*} [hΩ : MeasurableSpace Ω]
{P : Measure Ω} [hP : IsProbabilityMeasure P]
(A B : MeasurableSpace Ω) (hA : A ≤ hΩ) (hB : B ≤ hΩ)
(U V : Ω → ℝ) (hUm : Measurable[A] U)
(hVm : Measurable[B] V) (S T : ℝ) (hS : 0 ≤ S) (hT : 0 ≤ T)
(hUnn : ∀ ω, 0 ≤ U ω) (hUb : ∀ ω, U ω ≤ S)
(hVnn : ∀ ω, 0 ≤ V ω) (hVb : ∀ ω, V ω ≤ T) :
|(∫ ω, U ω * V ω ∂P) - (∫ ω, U ω ∂P) * (∫ ω, V ω ∂P)| ≤
S * T * @alphaPair Ω hΩ P A B := by sorry