LeanMachineLearning

measurableEmbedding_prodMk_left_of_measurableSet🔗

Lemma

From the authors

Prod.mk x is a measurable embedding as soon as {x} is measurable. This generalises measurableEmbedding_prodMk_left, which assumes MeasurableSingletonClass.

Types
  • α : Type u_1MeasurableSpace αA measurable space is a space equipped with a σ-algebra.
  • β : Type u_2MeasurableSpace β
Given
  • x : α
Assuming
  • hx : MeasurableSet {x}MeasurableSet s means that s is measurable (in the ambient measure space on α)
Then
MeasurableEmbedding (Prod.mk x)
A map f : α → β is called a *measurable embedding* if it is injective, measurable, and sends measurable sets to measurable sets.
Code
lemma measurableEmbedding_prodMk_left_of_measurableSet {α β : Type*} [MeasurableSpace α]
    [MeasurableSpace β] {x : α} (hx : MeasurableSet {x}) :
    MeasurableEmbedding (Prod.mk x : β → α × β) where
  injective _ _ h
Proof
(Prod.ext_iff.mp h).2
  measurable := by fun_prop
  measurableSet_image' s hs := by
    convert! hx.prod hs
    ext p
    simp [Prod.ext_iff, eq_comm, and_left_comm]

New in v4.34.0-rc2-74-ge05e4f3 (2026-09-10), and its meaning has not changed since.

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