LeanMachineLearning

ProbabilityTheory.HasCondSubexponentialMGF🔗

Definition

From the authors

A random variable X has a conditionally sub-exponential moment-generating function with parameters (V, b) with respect to a sigma-algebra m and a measure μ if for all t with b * |t| ≤ 1, exp (t * X) is μ-integrable and the moment-generating function of X conditioned on m is almost surely bounded by exp (V * t ^ 2 / 2).

The actual definition uses Kernel.HasSubexponentialMGF: HasCondSubexponentialMGF is defined as sub-exponential with respect to the conditional expectation kernel for m and the restriction of μ to the sigma-algebra m.

Types
  • Ω : Type u_1m : MeasurableSpace ΩA measurable space is a space equipped with a σ-algebra.mΩ : MeasurableSpace ΩStandardBorelSpace ΩA standard Borel space is a measurable space arising as the Borel sets of some Polish topology.
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.MeasureTheory.IsFiniteMeasure μA measure μ is called finite if μ univ < ∞.
Assuming
  • hm : m
Result
Prop
Body
Kernel.HasSubexponentialMGF X V b (condExpKernel μ m) (μ.trim hm)
Code
def HasCondSubexponentialMGF (X : Ω → ℝ) (V b : ℝ)
    (μ : Measure Ω := by volume_tac) [IsFiniteMeasure μ] : Prop :=
  Kernel.HasSubexponentialMGF X V b (condExpKernel μ m) (μ.trim hm)

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

Audit surface: 1 project declarations, 65 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.