LeanMachineLearning exposition

Learning.IT.feedback_eq_eval_comp_hist๐Ÿ”—

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

feedback_eq_eval_comp_hist๐Ÿ”—

LemmaLearning.IT.feedback_eq_eval_comp_hist

No docstring.

๐Ÿ”—theorem
Learning.IT.feedback_eq_eval_comp_hist.{u_1, u_2} {๐“ : Type u_1} {๐“จ : Type u_2} (n : โ„•) : feedback n = (fun x => Prod.snd (x โŸจn, โ‹ฏโŸฉ)) โˆ˜ hist n
Learning.IT.feedback_eq_eval_comp_hist.{u_1, u_2} {๐“ : Type u_1} {๐“จ : Type u_2} (n : โ„•) : feedback n = (fun x => Prod.snd (x โŸจn, โ‹ฏโŸฉ)) โˆ˜ hist n

Code

lemma feedback_eq_eval_comp_hist (n : โ„•) :
    feedback (๐“
Type uses (2)
Used by (1)

Actions: Source ยท Open Issue

Proof
๐“) (๐“จ := ๐“จ) n = (fun x โ†ฆ (x โŸจn, by simpโŸฉ).2) โˆ˜ (hist n) := rfl

Dependency graph

Type dependencies (2)

feedback๐Ÿ”—

DefinitionLearning.IT.feedback

feedback n is the feedback at time n. This is a random variable on the measurable space โ„• โ†’ ๐“ ร— ๐“จ.

๐Ÿ”—def
Learning.IT.feedback.{u_1, u_2} {๐“ : Type u_1} {๐“จ : Type u_2} (n : โ„•) (h : โ„• โ†’ ๐“ ร— ๐“จ) : ๐“จ
Learning.IT.feedback.{u_1, u_2} {๐“ : Type u_1} {๐“จ : Type u_2} (n : โ„•) (h : โ„• โ†’ ๐“ ร— ๐“จ) : ๐“จ

Code

def feedback (n : โ„•) (h : โ„• โ†’ ๐“ ร— ๐“จ) : ๐“จ := (h n).2
Used by (16)

Actions: Source ยท Open Issue

hist๐Ÿ”—

DefinitionLearning.IT.hist

hist n is the history up to time n. This is a random variable on the measurable space โ„• โ†’ ๐“ ร— ๐“จ.

๐Ÿ”—def
Learning.IT.hist.{u_1, u_2} {๐“ : Type u_1} {๐“จ : Type u_2} (n : โ„•) (h : โ„• โ†’ ๐“ ร— ๐“จ) : โ†ฅ(Finset.Iic n) โ†’ ๐“ ร— ๐“จ
Learning.IT.hist.{u_1, u_2} {๐“ : Type u_1} {๐“จ : Type u_2} (n : โ„•) (h : โ„• โ†’ ๐“ ร— ๐“จ) : โ†ฅ(Finset.Iic n) โ†’ ๐“ ร— ๐“จ

Code

def hist (n : โ„•) (h : โ„• โ†’ ๐“ ร— ๐“จ) : Iic n โ†’ ๐“ ร— ๐“จ := fun i โ†ฆ h i
Used by (23)

Actions: Source ยท Open Issue