Skip to content

Commit 6d640d3

Browse files
EtienneC30b-mehta
authored andcommitted
feat: the natural filtration of a process is the filtration generated by the process (leanprover-community#39754)
1 parent 43262cc commit 6d640d3

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Mathlib/Probability/Process/Filtration.lean

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,11 @@ def natural (u : (i : ι) → Ω → β i) (hum : ∀ i, StronglyMeasurable (u i
399399
rintro j _ s ⟨t, ht, rfl⟩
400400
exact (hum j).measurable ht
401401

402+
lemma natural_eq_comap (u : (i : ι) → Ω → β i) (hum : ∀ (i : ι), StronglyMeasurable (u i)) (i : ι) :
403+
natural u hum i = .comap (fun ω (j : Set.Iic i) ↦ u j ω) inferInstance := by
404+
simp_rw [natural, MeasurableSpace.comap_process_pi, iSup_subtype']
405+
rfl
406+
402407
section
403408

404409
open MeasurableSpace

0 commit comments

Comments
 (0)