Finite Maxima of Sub-Gaussian Variables #
Deterministic soft-max inequalities and the expected maximum bound for a finite sub-Gaussian family.
Main definitions #
This module introduces no new definitions.
Main results #
abs_sup'_le_sum: absolute supremum bounded by a finite sum.expected_max_subGaussian: expected maximum of a finite sub-Gaussian family.
theorem
LeanPool.measure_finset_sup_ge_le_sum
{Ω : Type u_1}
[MeasurableSpace Ω]
{ι : Type u_2}
{μ : MeasureTheory.Measure Ω}
{X : ι → Ω → ℝ}
{u : ℝ}
{s : Finset ι}
(hs : s.Nonempty)
:
Union bound for maximum over finset: P(max_i X_i ≥ u) ≤ Σ_i P(X_i ≥ u).
MGF-Based Bounds for Expected Maximum #
theorem
LeanPool.expected_max_subGaussian
{Ω : Type u_1}
[MeasurableSpace Ω]
{ι : Type u_2}
{μ : MeasureTheory.Measure Ω}
[MeasureTheory.IsProbabilityMeasure μ]
{X : ι → Ω → ℝ}
{σ : ℝ}
(hσ : 0 < σ)
{s : Finset ι}
(hs : s.Nonempty)
(hs_card : 2 ≤ s.card)
(hX_sgb : ∀ i ∈ s, ∀ (t : ℝ), ProbabilityTheory.cgf (X i) μ t ≤ t ^ 2 * σ ^ 2 / 2)
(hX_int_exp : ∀ i ∈ s, ∀ (t : ℝ), MeasureTheory.Integrable (fun (ω : Ω) => Real.exp (t * X i ω)) μ)
:
Expected maximum over finset of sub-Gaussian random variables via MGF method. E[max_i X_i] ≤ σ · √(2 log n) where n = |s|.