Variance bound for arbitrary finite selections of a stationary sequence
ProvedMarkovChainCLT.variance_finsetSum_le_card_mul_of_summable_abs_covmarkov-chainsmcmcprobability
Let be a measurable, strictly stationary sequence of real random variables on a probability space with measure . Assume that has mean zero and a finite second moment, and that its positive-lag autocovariances are absolutely summable. Write
For every finite set , the variance of the selected sum satisfies
The indices in need not be consecutive. Thus the same constant controls sums over gaps or omitted blocks, which is useful in blocking arguments for central limit theorems. The estimate also includes the empty set and the case of zero variance.
Preamble
import Definitions.Def_MixingCoefficients import Mathlib.Tactic.Linarith import Mathlib.Tactic.FunProp open MeasureTheory ProbabilityTheory Filter MarkovChainCLT open scoped ENNReal NNReal Topology ProbabilityTheory
Formal statement
theorem MarkovChainCLT.variance_finsetSum_le_card_mul_of_summable_abs_cov
{Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → ℝ)
(hY : ∀ n, Measurable (Y n)) (hstat : IsStrictlyStationary P Y)
(hcent : ∫ ω, Y 0 ω ∂P = 0) (hL2 : MemLp (Y 0) 2 P)
(hsum : Summable (fun k : ℕ => |∫ ω, Y 0 ω * Y (k + 1) ω ∂P|))
(s : Finset ℕ) :
Var[∑ i ∈ s, Y i; P] ≤ (s.card : ℝ) *
((∫ ω, (Y 0 ω) ^ 2 ∂P) +
2 * ∑' k : ℕ, |∫ ω, Y 0 ω * Y (k + 1) ω ∂P|) := by sorrySource
Auxiliary finite-selection covariance estimate, proved by the row-sum argument in this submission. Reference for the stationary covariance expansion: Patrick Billingsley, Probability and Measure, 3rd edition, Section 27, p. 366, first paragraph of the proof of Theorem 27.4, https://www.colorado.edu/amath/sites/default/files/attached-files/billingsley.pdf. This lemma explicitly extends that covariance calculation to arbitrary finite selections; it is not a verbatim statement of Theorem 27.4. Mission context: Galin L. Jones, On the Markov Chain Central Limit Theorem, Section 4, Theorem 5(ii), https://arxiv.org/html/math/0409112v2.