Documentation

PFR.ForMathlib.ProbabilityMeasureProdCont

Continuity of products of probability measures on finite types #

theorem MeasureTheory.ProbabilityMeasure.tendsto_iff_forall_apply_tendsto {ι : Type u_1} {α : Type u_2} {L : Filter ι} [Finite α] [TopologicalSpace α] [DiscreteTopology α] [MeasurableSpace α] [BorelSpace α] (μs : ιMeasureTheory.ProbabilityMeasure α) (μ : MeasureTheory.ProbabilityMeasure α) :
Filter.Tendsto μs L (nhds μ) ∀ (a : α), Filter.Tendsto (fun (x : ι) => (fun (s : Set α) => ((μs x) s).toNNReal) {a}) L (nhds ((fun (s : Set α) => (μ s).toNNReal) {a}))

Probability measures on a finite space tend to a limit if and only if the probability masses of all points tend to the corresponding limits.

theorem MeasureTheory.ProbabilityMeasure.tendsto_prod_of_tendsto_of_tendsto {ι : Type u_1} {L : Filter ι} {α : Type u_2} {β : Type u_3} [Finite α] [TopologicalSpace α] [DiscreteTopology α] [MeasurableSpace α] [BorelSpace α] [Finite β] [TopologicalSpace β] [DiscreteTopology β] [MeasurableSpace β] [BorelSpace β] (μs : ιMeasureTheory.ProbabilityMeasure α) (μ : MeasureTheory.ProbabilityMeasure α) (μs_lim : Filter.Tendsto μs L (nhds μ)) (νs : ιMeasureTheory.ProbabilityMeasure β) (ν : MeasureTheory.ProbabilityMeasure β) (νs_lim : Filter.Tendsto νs L (nhds ν)) :
Filter.Tendsto (fun (i : ι) => (μs i).prod (νs i)) L (nhds (μ.prod ν))

If probability measures on two finite spaces tend to limits, then the products of them on the product space tend to the product of the limits. TODO: In Mathlib, this should be done on all separable metrizable spaces.

The product of two probability measures on finite spaces depend continuously on the two probability measures. TODO: In Mathlib, this should be done on all separable metrizable spaces.