Skip to content

Commit 62a8040

Browse files
committed
Update UniformIntegrable.lean
1 parent 51aac6f commit 62a8040

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Mathlib/MeasureTheory/Function/UniformIntegrable.lean

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -907,4 +907,30 @@ theorem uniformIntegrable_average_real (hp : 1 ≤ p) {f : ℕ → α → ℝ} (
907907

908908
end 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+
910936
end MeasureTheory

0 commit comments

Comments
 (0)