File tree Expand file tree Collapse file tree
Mathlib/MeasureTheory/Function Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -907,4 +907,30 @@ theorem uniformIntegrable_average_real (hp : 1 ≤ p) {f : ℕ → α → ℝ} (
907907
908908end UniformIntegrable
909909
910+ section TendstoInMeasure
911+
912+ /-- If a uniformly `p`-integrable collection of functions converges in measure, then its limit is
913+ a member of `Lp`. -/
914+ lemma UniformIntegrable.memLp_of_tendstoInMeasure
915+ {α β : Type *} {m : MeasurableSpace α} {μ : Measure α} [NormedAddCommGroup β]
916+ {fn : ℕ → α → β} {f : α → β} (p : ℝ≥0 ∞) (hUI : UniformIntegrable fn p μ)
917+ (htends : TendstoInMeasure μ fn atTop f) :
918+ MemLp f p μ := by
919+ refine ⟨htends.aestronglyMeasurable hUI.1 , ?_⟩
920+ obtain ⟨C, hC⟩ := hUI.2 .2
921+ exact lt_of_le_of_lt (tendstoInMeasure_bounded p (fun i => hC i) htends (fun i => hUI.1 i))
922+ ENNReal.coe_lt_top
923+
924+ /-- If a uniformly integrable collection of functions converges in measure, then its limit is
925+ integrable. -/
926+ lemma UniformIntegrable.integrable_of_tendstoInMeasure
927+ {α β : Type *} {m : MeasurableSpace α} {μ : Measure α} [NormedAddCommGroup β]
928+ {fn : ℕ → α → β} {f : α → β} (hUI : UniformIntegrable fn 1 μ)
929+ (htends : TendstoInMeasure μ fn atTop f) :
930+ Integrable f μ := by
931+ rw [← memLp_one_iff_integrable]
932+ exact hUI.memLp_of_tendstoInMeasure 1 htends
933+
934+ end TendstoInMeasure
935+
910936end MeasureTheory
You can’t perform that action at this time.
0 commit comments