LeanMachineLearning

ProbabilityTheory.HasSubexponentialMGFšŸ”—

Structure

From the authors

X has a sub-exponential moment generating function with parameters (V, b): for every t with b * |t| ≤ 1, exp (t * X) is integrable and mgf X μ t ≤ exp (V * t ^ 2 / 2). For b = 0 this is HasSubgaussianMGF X V μ.

This is equivalent to Kernel.HasSubexponentialMGF X V b (Kernel.const Unit μ) (Measure.dirac ()), as proved in hasSubexponentialMGF_iff_kernel.

Types
  • Ī© : Type u_1mĪ© : MeasurableSpace Ī©A measurable space is a space equipped with a σ-algebra.
Given
  • X : Ī© → ā„
  • V : ā„
  • b : ā„
  • μ : MeasureTheory.Measure Ī©A measure is defined to be an outer measure that is countably additive on measurable sets, with the additional assumption that the outer measure is the canonical extension of the restricted measure.
Result
Prop
Fields
  • integrable_exp_mul : āˆ€ (t : ā„), b * |t| ≤ 1 → MeasureTheory.Integrable (fun ω => Real.exp (t * X ω)) μIntegrable f μ means that f is measurable and that the integral ∫⁻ a, ‖f a‖ āˆ‚Ī¼ is finite.
  • mgf_le : āˆ€ (t : ā„), b * |t| ≤ 1 → mgf X μ t ≤ Real.exp (V * t ^ 2 / 2)
Code
structure HasSubexponentialMGF (X : Ī© → ā„) (V b : ā„) (μ : Measure Ī© := by volume_tac) :
    Prop where
  integrable_exp_mul : āˆ€ t : ā„, b * |t| ≤ 1 → Integrable (fun ω ↦ exp (t * X ω)) μ
  mgf_le : āˆ€ t : ā„, b * |t| ≤ 1 → mgf X μ t ≤ exp (V * t ^ 2 / 2)

Meaning last changed in v4.34.0-rc2-76-g565f652 (2026-09-10).

Self-contained, with its dependencies inlined and proofs replaced by sorry: download the raw file Ā· open it in the Lean web editor.

Dependency graph

Nothing to draw. Its statement rests on no other declaration in this project, and names nothing from a package left unaudited — so the graph is this declaration alone. That is the answer, not a missing picture.

Audit surface: 0 project declarations, 52 external constants

āœ“ Proved: no sorry anywhere in its closure

This is the tool's own reading of one build's recorded axioms, and it is not robust against an author who wants it to pass. Checking meant to be relied on should go through Comparator, which replays the proof through the kernel from an export against an explicit list of permitted axioms.