@@ -674,32 +674,33 @@ theorem unifIntegrable_of (hp : 1 ≤ p) (hp' : p ≠ ∞) {f : ι → α → β
674674
675675/-- If `fn` is `UnifIntegrable`, then the family of limits in probability of sequences of `fn` is
676676`UnifIntegrable`. -/
677- lemma UnifIntegrable.unifIntegrable_of_tendstoInMeasure {fn : ι → α → β} (p : ℝ≥ 0 ∞)
677+ lemma UnifIntegrable.unifIntegrable_of_tendstoInMeasure {fn : ι → α → β}
678678 (hUI : UnifIntegrable fn p μ) (hfn : ∀ i, AEStronglyMeasurable (fn i) μ) :
679679 UnifIntegrable (fun (f : {g : α → β | ∃ ni : ℕ → ι,
680680 TendstoInMeasure μ (fn ∘ ni) atTop g}) ↦ f.1 ) p μ := by
681681 refine fun ε hε => ?_
682682 obtain ⟨δ, hδ, hδ'⟩ := hUI hε
683683 refine ⟨δ, hδ, fun ⟨f, s, hs⟩ t ht ht' => ?_⟩
684- refine eLpNorm_le_of_tendstoInMeasure p
684+ refine eLpNorm_le_of_tendstoInMeasure
685685 (Eventually.of_forall fun n => hδ' (s n) t ht ht') (hs.indicator t) ?_
686686 exact fun n => (hfn (s n)).indicator ht
687687
688688/-- If `fn` is `UnifIntegrable`, then the family of a.e. limits of sequences of `fn` is
689689`UnifIntegrable`. -/
690- lemma UnifIntegrable.unifIntegrable_of_tendsto_ae {fn : ι → α → β} (p : ℝ≥ 0 ∞ )
691- (hUI : UnifIntegrable fn p μ) ( hfn : ∀ i, AEStronglyMeasurable (fn i) μ) :
690+ lemma UnifIntegrable.unifIntegrable_of_tendsto_ae {fn : ι → α → β} (hUI : UnifIntegrable fn p μ )
691+ (hfn : ∀ i, AEStronglyMeasurable (fn i) μ) :
692692 UnifIntegrable (fun (f : {g : α → β | ∃ ni : ℕ → ι,
693693 ∀ᵐ (x : α) ∂μ, Tendsto (fun n ↦ fn (ni n) x) atTop (nhds (g x))}) ↦ f.1 ) p μ := by
694694 refine fun ε hε => ?_
695695 obtain ⟨δ, hδ, hδ'⟩ := hUI hε
696696 refine ⟨δ, hδ, fun ⟨f, s, hs⟩ t ht ht' => ?_⟩
697- refine seq_tendsto_ae_bounded p (fun n => hδ' (s n) t ht ht') ?_ ?_
697+ refine Lp.eLpNorm_le_of_ae_tendsto
698+ (Eventually.of_forall (f := atTop) fun n => hδ' (s n) t ht ht') ?_ ?_
699+ · exact fun n => (hfn (s n)).indicator ht
698700 · filter_upwards [hs] with a ha
699701 by_cases memt : a ∈ t
700702 · simpa [memt]
701703 · simp [memt]
702- · exact fun n => (hfn (s n)).indicator ht
703704
704705end UnifIntegrable
705706
@@ -919,16 +920,27 @@ theorem uniformIntegrable_average_real (hp : 1 ≤ p) {f : ℕ → α → ℝ} (
919920
920921/-- If `fn` is `UniformIntegrable`, then the family of limits in probability of sequences of `fn` is
921922`UniformIntegrable`. -/
922- lemma UniformIntegrable.uniformIntegrable_of_tendstoInMeasure
923- {α β ι : Type *} {m : MeasurableSpace α} {μ : Measure α} [NormedAddCommGroup β]
924- {fn : ι → α → β} (p : ℝ≥0 ∞) (hUI : UniformIntegrable fn p μ) :
923+ lemma UniformIntegrable.uniformIntegrable_of_tendstoInMeasure {fn : ι → α → β}
924+ (hUI : UniformIntegrable fn p μ) :
925925 UniformIntegrable (fun (f : {g : α → β | ∃ ni : ℕ → ι,
926926 TendstoInMeasure μ (fn ∘ ni) atTop g}) ↦ f.1 ) p μ := by
927- refine ⟨fun ⟨f, s, hs⟩ => ?_, hUI.2 .1 .unifIntegrable_of_tendstoInMeasure p (fun i => hUI.1 i), ?_⟩
927+ refine ⟨fun ⟨f, s, hs⟩ => ?_, hUI.2 .1 .unifIntegrable_of_tendstoInMeasure (fun i => hUI.1 i), ?_⟩
928928 · exact hs.aestronglyMeasurable (fun n => hUI.1 (s n))
929929 · obtain ⟨C, hC⟩ := hUI.2 .2
930- refine ⟨C, fun ⟨f, s, hs⟩ => ?_⟩
931- exact tendstoInMeasure_bounded p (fun n => hC (s n)) hs (fun n => hUI.1 (s n))
930+ exact ⟨C, fun ⟨f, s, hs⟩ => eLpNorm_le_of_tendstoInMeasure
931+ (Eventually.of_forall fun n => hC (s n)) hs (fun n => hUI.1 (s n))⟩
932+
933+ /-- If `fn` is `UniformIntegrable`, then the family of a.e. limits of sequences of `fn` is
934+ `UniformIntegrable`. -/
935+ lemma UniformIntegrable.uniformIntegrable_of_tendsto_ae {fn : ι → α → β}
936+ (hUI : UniformIntegrable fn p μ) :
937+ UniformIntegrable (fun (f : {g : α → β | ∃ ni : ℕ → ι,
938+ ∀ᵐ (x : α) ∂μ, Tendsto (fun n ↦ fn (ni n) x) atTop (nhds (g x))}) ↦ f.1 ) p μ := by
939+ refine ⟨fun ⟨f, s, hs⟩ => ?_, hUI.2 .1 .unifIntegrable_of_tendsto_ae (fun i => hUI.1 i), ?_⟩
940+ · exact aestronglyMeasurable_of_tendsto_ae atTop (fun n => hUI.1 (s n)) hs
941+ · obtain ⟨C, hC⟩ := hUI.2 .2
942+ exact ⟨C, fun ⟨f, s, hs⟩ => Lp.eLpNorm_le_of_ae_tendsto
943+ (Eventually.of_forall fun n => hC (s n)) (fun n => hUI.1 (s n)) hs⟩
932944
933945end UniformIntegrable
934946
0 commit comments