LeanMachineLearning exposition

Learning.measurable_trajectory🔗

This page has the declaration's own card below, then its dependency graph, then a card for each dependency (type dependencies first, then the rest of the transitive closure). For a theorem, the graph and the dependency cards only follow its statement's dependencies (its proof is replaced by sorry, so what it proves doesn't depend on how); for everything else, both the type and the body/value are followed, since their content is part of what later declarations build on.

Minimal Lean file

measurable_trajectory🔗

LemmaLearning.measurable_trajectory

No docstring.

🔗theorem
Learning.measurable_trajectory.{u_1, u_2, u_3} {𝓐 : Type u_1} {𝓨 : Type u_2} {Ω : Type u_3} {m𝓐 : MeasurableSpace 𝓐} {m𝓨 : MeasurableSpace 𝓨} { : MeasurableSpace Ω} {A : Ω 𝓐} {Y : Ω 𝓨} (hA : (n : ), Measurable (A n)) (hR : (n : ), Measurable (Y n)) : Measurable (trajectory A Y)
Learning.measurable_trajectory.{u_1, u_2, u_3} {𝓐 : Type u_1} {𝓨 : Type u_2} {Ω : Type u_3} {m𝓐 : MeasurableSpace 𝓐} {m𝓨 : MeasurableSpace 𝓨} { : MeasurableSpace Ω} {A : Ω 𝓐} {Y : Ω 𝓨} (hA : (n : ), Measurable (A n)) (hR : (n : ), Measurable (Y n)) : Measurable (trajectory A Y)

Code

lemma measurable_trajectory {A : ℕ → Ω → 𝓐} {Y : ℕ → Ω → 𝓨} (hA : ∀ n, Measurable (A n))
    (hR : ∀ n, Measurable (Y n)) : Measurable (trajectory A Y)
Type uses (1)
Used by (8)

Actions: Source · Open Issue

Proof
by
  unfold trajectory
  fun_prop

Dependency graph

Type dependencies (1)

trajectory🔗

DefinitionLearning.trajectory

A random variable that gives the sequence of action-feedback pairs.

🔗def
Learning.trajectory.{u_1, u_2, u_3} {𝓐 : Type u_1} {𝓨 : Type u_2} {Ω : Type u_3} (A : Ω 𝓐) (Y : Ω 𝓨) (ω : Ω) : 𝓐 × 𝓨
Learning.trajectory.{u_1, u_2, u_3} {𝓐 : Type u_1} {𝓨 : Type u_2} {Ω : Type u_3} (A : Ω 𝓐) (Y : Ω 𝓨) (ω : Ω) : 𝓐 × 𝓨

Code

def trajectory (A : ℕ → Ω → 𝓐) (Y : ℕ → Ω → 𝓨) (ω : Ω) : ℕ → 𝓐 × 𝓨 := fun n ↦ (A n ω, Y n ω)
Used by (18)

Actions: Source · Open Issue