Documentation

FLT_Proofs.PureMath.Concentration

Concentration Inequalities #

Pure mathematical infrastructure for concentration inequalities. No learning-theory types.

Main definitions #

Main results #

References #

class BoundedRandomVariable {Ω : Type u_1} [MeasurableSpace Ω] (f : Ω) (μ : MeasureTheory.Measure Ω) (a b : ) :

A random variable f : Ω → ℝ is bounded in [a, b] almost everywhere.

Instances
    theorem chebyshev_majority_bound {Ω : Type u_1} [MeasurableSpace Ω] {μ : MeasureTheory.Measure Ω} [MeasureTheory.IsProbabilityMeasure μ] {k : } {δ : } (h_delta_pos : 0 < δ) (hk : 9 / δ k) (events : Fin kSet Ω) (hevents_meas : ∀ (j : Fin k), MeasurableSet (events j)) (hindep : ProbabilityTheory.iIndepSet (fun (j : Fin k) => events j) μ) (hprob : ∀ (j : Fin k), μ (events j) ENNReal.ofReal (2 / 3)) :
    μ {ω : Ω | k < 2 * {j : Fin k | ω events j}.card} ENNReal.ofReal (1 - δ)

    Chebyshev majority bound: if k ≥ 9/δ independent events each have probability ≥ 2/3, then the probability that strictly more than k/2 of them hold is ≥ 1-δ. Uses indicator random variables, Popoviciu's variance bound, independence for variance of sums, and Chebyshev's inequality.