Documentation

Exchangeability.DeFinetti.ViaL2.Clip01

Clip01: Clamping to [0,1] #

This file defines clip01, which clamps real values to the interval [0,1], and proves basic properties used in L¹ convergence arguments.

Main definitions #

Main results #

Clip a real to the interval [0,1].

Equations
Instances For

    Pointwise contraction from the 1-Lipschitzness.

    theorem Exchangeability.DeFinetti.ViaL2.Helpers.l1_convergence_under_clip01 {Ω : Type u_1} [MeasurableSpace Ω] {μ : MeasureTheory.Measure Ω} {fn : Ω} {f : Ω} (h_meas : ∀ (n : ), AEMeasurable (fn n) μ) (hf : AEMeasurable f μ) (h_integrable : ∀ (n : ), MeasureTheory.Integrable (fun (ω : Ω) => fn n ω - f ω) μ) (h : Filter.Tendsto (fun (n : ) => (ω : Ω), |fn n ω - f ω| μ) Filter.atTop (nhds 0)) :
    Filter.Tendsto (fun (n : ) => (ω : Ω), |clip01 (fn n ω) - clip01 (f ω)| μ) Filter.atTop (nhds 0)

    L¹-stability under 1-Lipschitz post-composition. If ∫ |fₙ - f| → 0, then ∫ |clip01 ∘ fₙ - clip01 ∘ f| → 0.

    This follows from mathlib's LipschitzWith.norm_compLp_sub_le: Since clip01 is 1-Lipschitz and maps 0 to 0, we have ‖clip01 ∘ f - clip01 ∘ g‖₁ ≤ 1 * ‖f - g‖₁.