Kallenberg Lemma 1.3: Drop-Info Property via Contraction #
This file implements Kallenberg (2005), Lemma 1.3, the "contraction-independence" lemma.
Main Results #
condExp_indicator_eq_of_law_eq_of_comap_le: If(X,W) =^d (X,W')andσ(W) ⊆ σ(W'), thenE[1_{X∈A}|σ(W')] = E[1_{X∈A}|σ(W)]a.e.
Mathematical Background #
Kallenberg's Lemma 1.3 (Contraction-Independence):
Given random elements ξ, η, ζ where:
(ξ, η) =^d (ξ, ζ)(pair laws match)σ(η) ⊆ σ(ζ)(η is a contraction of ζ — i.e., η = f ∘ ζ for some measurable f)
Conclusion: P[ξ ∈ B | ζ] = P[ξ ∈ B | η] a.s.
The intuition: conditioning on the finer σ-algebra σ(ζ) gives the same result as conditioning on the coarser σ-algebra σ(η), because the "extra" information in ζ beyond η doesn't change the relationship with ξ (due to the pair law equality).
References #
- Kallenberg (2005), Probabilistic Symmetries and Invariance Principles, Lemma 1.3
Kallenberg Lemma 1.3 (Contraction-Independence).
If (X,W) =^d (X,W') (pair laws equal) and σ(W) ⊆ σ(W') (W is a contraction of W'),
then conditioning an indicator of X on σ(W') equals conditioning on σ(W).
This is the "drop information from finer to coarser σ-algebra" property.
Proof: L²/martingale argument.
- Let μ₁ := E[φ|σ(W)] and μ₂ := E[φ|σ(W')] where φ = 1_{X∈A}
- Tower: μ₁ = E[μ₂|σ(W)] (since σ(W) ≤ σ(W'))
- Law equality: E[μ₁²] = E[μ₂²] (from pair law)
- Compute: E[(μ₂-μ₁)²] = E[μ₂²] - 2E[μ₂μ₁] + E[μ₁²] = E[μ₂²] - 2E[E[μ₂|σ(W)]·μ₁] + E[μ₁²] (tower) = E[μ₂²] - 2E[μ₁²] + E[μ₁²] = E[μ₂²] - E[μ₁²] = 0
- So μ₂ = μ₁ a.e.
Helper to extract pair law from triple law.
Legacy wrapper: the old condExp_eq_of_triple_law_direct interface.
WARNING: This lemma's original statement was incorrect. It claimed that
the triple law (Z,Y,W) =^d (Z,Y,W') alone implies E[φ|σ(Z,W)] = E[φ|σ(W)].
This is FALSE in general.
This wrapper provides backward compatibility but adds the missing contraction hypothesis. If your use case doesn't have this hypothesis, the original claim was invalid and you need to restructure your proof.
The correct statement (Kallenberg 1.3) is condExp_indicator_eq_of_law_eq_of_comap_le:
you need σ(W) ≤ σ(W') (W is a contraction of W') to drop from σ(W') to σ(W).