Maximum utility and Bernoulli distributions #
Contains closed-form expressions for e-values, maximum utility, and divergences for Bernoulli distributions.
Main definitions #
Ber: Bernoulli distribution on{0, 1}.
Main statements #
isEVar_bernoulli_le_iff: Characterization of e-variables for Bernoulli distributions with mean at mostδ.maxUtility_bernoulli_half_le: Maximum utility for Bernoulli distribution with mean at most $\frac{1}{2}$.maxUtility_bernoulli_half_le: Maximum utility for Bernoulli distribution with mean at most $\frac{1}{2}$.erenyiDiv_bernoulli: e-Rényi divergence between two Bernoulli distributions with mean at most $\frac{1}{2}$.echernoffDiv_bernoulli: e-Chernoff divergence between two Bernoulli distributions with mean at most $\frac{1}{2}$.
Bernoulli distribution on {0, 1}.
Using 1 - (1 - p) ensures that we always have a probability measure.
Equations
Instances For
@[simp]
@[simp]
theorem
ProbabilityTheory.apply_zero_add_apply_one_eq_one
(R : MeasureTheory.Measure ↑{0, 1})
[MeasureTheory.IsProbabilityMeasure R]
:
@[simp]
theorem
ProbabilityTheory.one_sub_apply_one
(R : MeasureTheory.Measure ↑{0, 1})
[MeasureTheory.IsProbabilityMeasure R]
:
@[simp]
theorem
ProbabilityTheory.one_sub_apply_zero
(R : MeasureTheory.Measure ↑{0, 1})
[MeasureTheory.IsProbabilityMeasure R]
:
@[simp]
theorem
ProbabilityTheory.one_sub_one_sub_measure_apply
(R : MeasureTheory.Measure ↑{0, 1})
[MeasureTheory.IsProbabilityMeasure R]
(s : Set ↑{0, 1})
:
theorem
ProbabilityTheory.eq_ber_lintegral
(R : MeasureTheory.Measure ↑{0, 1})
[MeasureTheory.IsProbabilityMeasure R]
:
theorem
ProbabilityTheory.maxUtility_bernoulli_le
{p : ENNReal}
{δ : ℝ}
(hδ_pos : 0 < δ)
(hδ : δ ≤ 2⁻¹)
(hp : ENNReal.ofReal δ ≤ p)
:
maxUtility (Ber p) {x : MeasureTheory.Measure ↑{0, 1} | ∃ q ≤ ENNReal.ofReal δ, Ber q = x} logUtility = 2⁻¹ * ↑(klBer p (ENNReal.ofReal δ))
The maximum utility for Bernoulli distribution with mean at most 1/2 is
2⁻¹ * log (1 / (4 * δ * (1 - δ))).
theorem
ProbabilityTheory.eq_bernoulli_half_of_map_eq
{R : MeasureTheory.Measure ↑{0, 1}}
[MeasureTheory.IsProbabilityMeasure R]
(hRφ : MeasureTheory.Measure.map (fun (x : ↑{0, 1}) => ⟨1 - ↑x, ⋯⟩) R = R)
:
theorem
ProbabilityTheory.map_bernoulli_le_eq_bernoulli_ge
(δ : ℝ)
:
{x : MeasureTheory.Measure ↑{0, 1} | ∃ μ ∈ {μ : MeasureTheory.Measure ↑{0, 1} | MeasureTheory.IsProbabilityMeasure μ ∧ ∫ (x : ↑{0, 1}), ↑x ∂μ ≤ δ},
MeasureTheory.Measure.map (fun (x : ↑{0, 1}) => ⟨1 - ↑x, ⋯⟩) μ = x} = {μ : MeasureTheory.Measure ↑{0, 1} | MeasureTheory.IsProbabilityMeasure μ ∧ 1 - δ ≤ ∫ (x : ↑{0, 1}), ↑x ∂μ}
The e-Rényi divergence between two Bernoulli distributions with mean at most 1/2 is
log (1 / (4 * δ * (1 - δ))).
The e-Chernoff divergence between two Bernoulli distributions with mean at most 1/2 is
2⁻¹ * log (1 / (4 * δ * (1 - δ))).