LeanMachineLearning

MeasurableSpace.iSup_comap_restrictFin🔗

Lemma

From the authors

The σ-algebras of the projections of ℕ → E on the first n coordinates generate the product σ-algebra.

Types
  • E : Type u_1mE : MeasurableSpace EA measurable space is a space equipped with a σ-algebra.
Then
⨆ n, MeasurableSpace.comap (fun f i => f ↑i) pi = pi
Code
lemma iSup_comap_restrictFin {E : Type*} [mE : MeasurableSpace E] :
    ⨆ n : ℕ, MeasurableSpace.comap (fun f : ℕ → E ↦ fun i : Fin n ↦ f i)
      MeasurableSpace.pi = MeasurableSpace.pi
Proof
by
  refine le_antisymm
    (iSup_le fun n ↦ (Measurable.of_eval fun _ ↦ measurable_pi_apply _).comap_le)
    (iSup_le fun i ↦ le_iSup_of_le (i + 1) ?_)
  have : (fun f : ℕ → E ↦ f i) =
      (fun h : Fin (i + 1) → E ↦ h ⟨i, i.lt_succ_self⟩) ∘
        fun f : ℕ → E ↦ fun j : Fin (i + 1) ↦ f j := rfl
  rw [this, ← MeasurableSpace.comap_comp]
  exact MeasurableSpace.comap_mono (measurable_pi_apply _).comap_le

New in v4.34.0-rc2-49-gc33199e (2026-09-09), and its meaning has not changed since. Its file was edited 2026-09-10 (357e9dd, “Update Mathlib”) without changing what it means.

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