LeanMachineLearning

ProbabilityTheory.HasSubexponentialMGF.sum_of_iIndepFun🔗

Lemma

No docstring.

Types
  • Ω : Type u_1mΩ : MeasurableSpace ΩA measurable space is a space equipped with a σ-algebra.
  • ι : Type u_2
Given
  • μ : 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.
  • b :
  • X : ι → Ω →
  • V : ι →
  • s : Finset ιFinset α is the type of finite sets of elements of α.
Assuming
Then
HasSubexponentialMGF (∑ i ∈ s, X i) (∑ i ∈ s, V i) b μ
Code
lemma sum_of_iIndepFun {ι : Type*} {X : ι → Ω → ℝ} (h_indep : iIndepFun X μ) {V : ι → ℝ}
    (s : Finset ι) (h : ∀ i ∈ s, HasSubexponentialMGF (X i) (V i) b μ) :
    HasSubexponentialMGF (∑ i ∈ s, X i) (∑ i ∈ s, V i) b μ
Proof
by
  have : HasSubexponentialMGF (fun ω ↦ ∑ (i : s), X i ω) (∑ (i : s), V i) b μ := by
    apply sum_of_iIndepFun_of_forall_aemeasurable
    · exact h_indep.precomp Subtype.val_injective
    · exact fun i ↦ (h i i.2).aemeasurable
    · exact fun i _ ↦ h i i.2
  rw [Finset.sum_coe_sort] at this
  refine (this.congr (ae_of_all _ fun ω ↦ Finset.sum_attach s (fun i ↦ X i ω))).congr ?_
  exact ae_of_all _ fun ω ↦ by simp [Finset.sum_apply]

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, 61 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.