Skip to content

Commit 9ff598d

Browse files
mathlib-splicebot[bot]EtienneC30
authored andcommitted
feat: the sigma-algebra generated by a stochastic process is the coarsest that makes all its marginals measurable (leanprover-community#39730)
This PR was automatically created from PR leanprover-community#37259 by @EtienneC30 via a [review comment](leanprover-community#37259 (comment)) by @EtienneC30. Co-authored-by: EtienneC30 <66847262+EtienneC30@users.noreply.github.com>
1 parent 553c661 commit 9ff598d

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Mathlib/MeasureTheory/MeasurableSpace/Constructions.lean

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,12 @@ theorem measurable_pi_lambda (f : α → ∀ a, X a) (hf : ∀ a, Measurable fun
586586
Measurable f :=
587587
measurable_pi_iff.mpr hf
588588

589+
lemma MeasurableSpace.comap_process_pi (X : (a : δ) → β → X a) :
590+
MeasurableSpace.comap (fun b a ↦ X a b) inferInstance =
591+
⨆ a, MeasurableSpace.comap (X a) inferInstance := by
592+
simp_rw [MeasurableSpace.pi, MeasurableSpace.comap_iSup, MeasurableSpace.comap_comp]
593+
rfl
594+
589595
/-- The function `(f, x) ↦ update f a x : (Π a, X a) × X a → Π a, X a` is measurable. -/
590596
@[fun_prop]
591597
theorem measurable_update' {a : δ} [DecidableEq δ] :

0 commit comments

Comments
 (0)