Window Machinery for Cesàro Averages #
This file defines finite windows of consecutive indices used to express Cesàro averages in the ViaL2 proof of de Finetti's theorem.
Main definitions #
window n k: The finset{n+1, n+2, ..., n+k}of k consecutive indices starting from n+1
Main results #
window_card: The window contains exactly k elementsmem_window_iff: Characterization of window membershipsum_window_eq_sum_fin: Sums over windows can be reindexed as sums overFin k
References #
- Kallenberg (2005), Probabilistic Symmetries and Invariance Principles, Chapter 1
Finite window of consecutive indices.
The window {n+1, n+2, ..., n+k} represented as a Finset ℕ.
Used to express Cesàro averages: (1/k) * ∑_{i ∈ window n k} f(X_i).
Equations
- Exchangeability.DeFinetti.ViaL2.window n k = Finset.image (fun (i : ℕ) => n + i + 1) (Finset.range k)