Bandits.StreamMeasure.prob_sum_range_sub_le_le_of_HasSubgaussianMGF
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.
prob_sum_range_sub_le_le_of_HasSubgaussianMGF๐
Bandits.StreamMeasure.prob_sum_range_sub_le_le_of_HasSubgaussianMGFNo docstring.
Bandits.StreamMeasure.prob_sum_range_sub_le_le_of_HasSubgaussianMGF.{u_1} {๐ : Type u_1} {m๐ : MeasurableSpace ๐} {ฮฝ : ProbabilityTheory.Kernel ๐ โ} [ProbabilityTheory.IsMarkovKernel ฮฝ] {a : ๐} {ฯ2 : NNReal} (h : ProbabilityTheory.HasSubgaussianMGF (fun x => x - โซ (x : โ), id x โฮฝ a) ฯ2 (ฮฝ a)) {ฮต : โ} (hฮต : 0 โค ฮต) (n : โ) : (streamMeasure ฮฝ) {ฯ | โ k โ Finset.range n, (ฯ k a - โซ (x : โ), id x โฮฝ a) โค -ฮต} โค ENNReal.ofReal (Real.exp (-ฮต ^ 2 / (2 * โn * โฯ2)))Bandits.StreamMeasure.prob_sum_range_sub_le_le_of_HasSubgaussianMGF.{u_1} {๐ : Type u_1} {m๐ : MeasurableSpace ๐} {ฮฝ : ProbabilityTheory.Kernel ๐ โ} [ProbabilityTheory.IsMarkovKernel ฮฝ] {a : ๐} {ฯ2 : NNReal} (h : ProbabilityTheory.HasSubgaussianMGF (fun x => x - โซ (x : โ), id x โฮฝ a) ฯ2 (ฮฝ a)) {ฮต : โ} (hฮต : 0 โค ฮต) (n : โ) : (streamMeasure ฮฝ) {ฯ | โ k โ Finset.range n, (ฯ k a - โซ (x : โ), id x โฮฝ a) โค -ฮต} โค ENNReal.ofReal (Real.exp (-ฮต ^ 2 / (2 * โn * โฯ2)))
Code
lemma prob_sum_range_sub_le_le_of_HasSubgaussianMGF {ฯ2 : โโฅ0}
(h : HasSubgaussianMGF (fun x โฆ x - (ฮฝ a)[id]) ฯ2 (ฮฝ a)) {ฮต : โ} (hฮต : 0 โค ฮต) (n : โ) :
streamMeasure ฮฝ {ฯ | โ k โ range n, (ฯ k a - (ฮฝ a)[id]) โค -ฮต} โค
ENNReal.ofReal (Real.exp (-ฮต ^ 2 / (2 * n * ฯ2)))Type uses (1)
Body uses (4)
Used by (1)
Actions: Source ยท Open Issue
Proof
by
rw [โ ofReal_measureReal]
gcongr
apply HasSubgaussianMGF.measure_sum_range_le_le_of_iIndepFun _ _ hฮต
ยท exact (iIndepFun_eval_streamMeasure'' ฮฝ a).comp (fun _ x โฆ x - (ฮฝ a)[id]) (by fun_prop)
ยท intro _ _
exact h.congr_identDistrib ((identDistrib_eval_eval_id_streamMeasure _ _ _).symm.sub_const _)Dependency graph
Type dependencies (1)
streamMeasure๐
Bandits.streamMeasureMeasure of an infinite stream of rewards from each action.
Bandits.streamMeasure.{u_1, u_2} {๐ : Type u_1} {R : Type u_2} {m๐ : MeasurableSpace ๐} {mR : MeasurableSpace R} (ฮฝ : ProbabilityTheory.Kernel ๐ R) : MeasureTheory.Measure (โ โ ๐ โ R)Bandits.streamMeasure.{u_1, u_2} {๐ : Type u_1} {R : Type u_2} {m๐ : MeasurableSpace ๐} {mR : MeasurableSpace R} (ฮฝ : ProbabilityTheory.Kernel ๐ R) : MeasureTheory.Measure (โ โ ๐ โ R)
Code
noncomputable def streamMeasure (ฮฝ : Kernel ๐ R) : Measure (โ โ ๐ โ R) := Measure.infinitePi fun _ โฆ Measure.infinitePi ฮฝ
Used by (56)
Actions: Source ยท Open Issue