Conditional Independence - Projection Theorems #
This file proves that conditional independence allows projecting conditional expectations from σ(Z,W) to σ(W).
Main results #
condExp_project_of_condIndep: When Y ⊥⊥_W Z, conditioning on (Z,W) gives the same result as conditioning on W alone for indicator functions of Y.condIndep_project: Wrapper theorem using the projection property.
Key insight #
Conditional independence means that knowing Z provides no additional information about Y beyond what W already provides. Therefore E[f(Y)|σ(Z,W)] = E[f(Y)|σ(W)].
References #
- Kallenberg (2005), Probabilistic Symmetries and Invariance Principles, Section 6.1
Conditional expectation projection from conditional independence (helper).
When Y ⊥⊥_W Z, conditioning on (Z,W) gives the same result as conditioning on W alone for indicator functions of Y.
This is a key technical lemma used to prove the main projection theorem.
Conditional expectation projection from conditional independence.
When Y ⊥⊥_W Z, conditioning on (Z,W) gives the same result as conditioning on W alone for functions of Y.
Key insight: Conditional independence means that knowing Z provides no additional information about Y beyond what W already provides. Therefore E[f(Y)|σ(Z,W)] = E[f(Y)|σ(W)].
Proof strategy:
- By uniqueness, suffices to show integrals match on σ(W)-sets
- For S ∈ σ(W), we have S ∈ σ(Z,W) since σ(W) ≤ σ(Z,W)
- So ∫_S E[f(Y)|σ(Z,W)] = ∫_S f(Y) by conditional expectation property
- And ∫_S E[f(Y)|σ(W)] = ∫_S f(Y) by conditional expectation property
- Therefore the integrals match, giving the result
Alternative via conditional independence definition:
- Can show E[f(Y)|σ(Z,W)] is σ(W)-measurable by using the factorization from CondIndep
- Then apply that conditional expectation of a σ(W)-measurable function w.r.t. σ(W) is identity
Kallenberg 1.3: Indicator Conditional Independence from Drop-Info #
Infrastructure for deriving conditional independence from distributional equality via the "drop information" property for Y.
Note: Helper lemmas integrable_mul_of_bound_one and condExp_indicator_ae_bound_one
are available from CondExpHelpers.lean.