Ibragimov's covariance inequality for a pair of -algebras
DisprovedMarkovChainCLT.alphaPair_cov_uniform⚠️ Retired — specification defect
The Lean statement below does not encode the problem shown on this page, so its
Disprovedstatus carries no information about that problem. Do not import this node or use it as a dependency.
Ibragimov's covariance inequality for a pair of -algebras (uniform form).
Let be a probability space, let , and let be moment caps. Then there is a constant , depending only on , and , such that for any pair of sub--algebras and any centered random variables with -measurable, -measurable, and
the covariance obeys the power-decay estimate
where
is the pair-level strong mixing coefficient (alphaPair).
Formalization Note. The exponent is the classical Ibragimov rate: it is what makes the estimate summable when applied along a chain at lag , and it turns into at . The constant is deliberately left existential - only its independence of the pair and of the centered variables matters downstream. Proofs of this form (e.g. via dyadic truncation combined with Hölder at the endpoint pair , or via decreasing rearrangements) must control the bounded-versus-tail split uniformly; no bound on or is available or admissible.
Why this node was retired
The posted statement is
theorem MarkovChainCLT.alphaPair_cov_uniform {Ω : Type*} [hΩ : MeasurableSpace Ω]
(P : Measure Ω) [hP : IsProbabilityMeasure P] (p : ℝ) (hp : 2 < p) (Mx My : ℝ) :
∃ C : ℝ, 0 ≤ C ∧ ∀ (A B : MeasurableSpace Ω) (X Y : Ω → ℝ),
Measurable[A] X → Measurable[B] Y →
(∫ ω, X ω ∂P = 0) → (∫ ω, Y ω ∂P = 0) →
Integrable (fun ω => |X ω| ^ p) P → Integrable (fun ω => |Y ω| ^ p) P →
(∫ ω, |X ω| ^ p ∂P ≤ Mx) → (∫ ω, |Y ω| ^ p ∂P ≤ My) →
|∫ ω, X ω * Y ω ∂P| ≤ C * @alphaPair Ω hΩ P A B ^ ((p - 2) / p) := by sorry
A and B are arbitrary measurable structures, not sub-sigma-algebras of the ambient probability space; X,Y can be measurable only for those finer structures and not P-a.e. measurable. Their Bochner integrals then become zero by convention.
The recorded counterexample refutes the statement as encoded. It says nothing about the problem shown above, which is a different proposition.
Proposed corrected statement
With ambient sigma-algebra mΩ, add A≤mΩ and B≤mΩ, and take X measurable from A and Y measurable from B (or explicitly ambient AEMeasurable versions with a precise completed-subalgebra formulation). Retain p>2/moment hypotheses and centering; define α from measurable events of these genuine sub-sigma-algebras.
Diagnosis and correction from the public Prove2Me statement audit (wamlat/prove2me-errors). The correction is natural-language mathematics and is not Lean-verified — it is a specification for a corrected node, not a drop-in replacement. No corrected replacement node exists yet.
import Definitions.Def_AlphaPair open MeasureTheory ProbabilityTheory MarkovChainCLT
theorem MarkovChainCLT.alphaPair_cov_uniform {Ω : Type*} [hΩ : MeasurableSpace Ω]
(P : Measure Ω) [hP : IsProbabilityMeasure P] (p : ℝ) (hp : 2 < p) (Mx My : ℝ) :
∃ C : ℝ, 0 ≤ C ∧ ∀ (A B : MeasurableSpace Ω) (X Y : Ω → ℝ),
Measurable[A] X → Measurable[B] Y →
(∫ ω, X ω ∂P = 0) → (∫ ω, Y ω ∂P = 0) →
Integrable (fun ω => |X ω| ^ p) P → Integrable (fun ω => |Y ω| ^ p) P →
(∫ ω, |X ω| ^ p ∂P ≤ Mx) → (∫ ω, |Y ω| ^ p ∂P ≤ My) →
|∫ ω, X ω * Y ω ∂P| ≤ C * @alphaPair Ω hΩ P A B ^ ((p - 2) / p) := by sorry