Documentation

Exchangeability

Exchangeability #

Public API for the exchangeability library and de Finetti's theorem.

This is the umbrella module - import it to get access to all main results.

Main results #

Usage #

import Exchangeability

-- All main theorems are now available
example {Ω α : Type*} [MeasurableSpace Ω] [TopologicalSpace α]
    [MeasurableSpace α] [BorelSpace α]
    (μ : Measure Ω) [IsProbabilityMeasure μ]
    (X : ℕ → Ω → α) (hX_meas : ∀ i, Measurable (X i))
    (hX_exch : Exchangeable μ X) :
    ConditionallyIID μ X :=
  deFinetti μ X hX_meas hX_exch

Alternative proofs #

To use a specific proof approach, import the corresponding module directly:

References #