Skip to content

Commit 5aba5b4

Browse files
feat: another version of dominated convergence for AEMeasurable functions (#39768)
This PR was automatically created from PR #39517 by @jvanwinden via a [review comment](#39517 (comment)) by @EtienneC30. Co-authored-by: jvanwinden <6528059+jvanwinden@users.noreply.github.com>
1 parent 01a171f commit 5aba5b4

1 file changed

Lines changed: 14 additions & 4 deletions

File tree

Mathlib/MeasureTheory/Integral/Lebesgue/DominatedConvergence.lean

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,11 @@ theorem tendsto_lintegral_of_dominated_convergence' {F : ℕ → α → ℝ≥0
7676
filter_upwards [h_bound n, (hF_meas n).ae_eq_mk] with a H H'
7777
rwa [H'] at H
7878

79-
/-- **Dominated convergence theorem** for filters with a countable basis. -/
80-
theorem tendsto_lintegral_filter_of_dominated_convergence {ι} {l : Filter ι}
79+
/-- **Dominated convergence theorem** for filters with a countable basis and
80+
AEMeasurable functions. -/
81+
theorem tendsto_lintegral_filter_of_dominated_convergence' {ι} {l : Filter ι}
8182
[l.IsCountablyGenerated] {F : ι → α → ℝ≥0∞} {f : α → ℝ≥0∞} (bound : α → ℝ≥0∞)
82-
(hF_meas : ∀ᶠ n in l, Measurable (F n)) (h_bound : ∀ᶠ n in l, ∀ᵐ a ∂μ, F n a ≤ bound a)
83+
(hF_meas : ∀ᶠ n in l, AEMeasurable (F n) μ) (h_bound : ∀ᶠ n in l, ∀ᵐ a ∂μ, F n a ≤ bound a)
8384
(h_fin : ∫⁻ a, bound a ∂μ ≠ ∞) (h_lim : ∀ᵐ a ∂μ, Tendsto (fun n => F n a) l (𝓝 (f a))) :
8485
Tendsto (fun n => ∫⁻ a, F n a ∂μ) l (𝓝 <| ∫⁻ a, f a ∂μ) := by
8586
rw [tendsto_iff_seq_tendsto]
@@ -91,7 +92,7 @@ theorem tendsto_lintegral_filter_of_dominated_convergence {ι} {l : Filter ι}
9192
replace h := hxl _ h
9293
rcases h with ⟨k, h⟩
9394
rw [← tendsto_add_atTop_iff_nat k]
94-
refine tendsto_lintegral_of_dominated_convergence ?_ ?_ ?_ ?_ ?_
95+
refine tendsto_lintegral_of_dominated_convergence' ?_ ?_ ?_ ?_ ?_
9596
· exact bound
9697
· intro
9798
refine (h _ ?_).1
@@ -106,6 +107,15 @@ theorem tendsto_lintegral_filter_of_dominated_convergence {ι} {l : Filter ι}
106107
rw [tendsto_add_atTop_iff_nat]
107108
assumption
108109

110+
/-- **Dominated convergence theorem** for filters with a countable basis. -/
111+
theorem tendsto_lintegral_filter_of_dominated_convergence {ι} {l : Filter ι}
112+
[l.IsCountablyGenerated] {F : ι → α → ℝ≥0∞} {f : α → ℝ≥0∞} (bound : α → ℝ≥0∞)
113+
(hF_meas : ∀ᶠ n in l, Measurable (F n)) (h_bound : ∀ᶠ n in l, ∀ᵐ a ∂μ, F n a ≤ bound a)
114+
(h_fin : ∫⁻ a, bound a ∂μ ≠ ∞) (h_lim : ∀ᵐ a ∂μ, Tendsto (fun n => F n a) l (𝓝 (f a))) :
115+
Tendsto (fun n => ∫⁻ a, F n a ∂μ) l (𝓝 <| ∫⁻ a, f a ∂μ) := by
116+
refine tendsto_lintegral_filter_of_dominated_convergence' bound ?_ h_bound h_fin h_lim
117+
filter_upwards [hF_meas] using by fun_prop
118+
109119
/-- If a monotone sequence of functions has an upper bound and the sequence of integrals of these
110120
functions tends to the integral of the upper bound, then the sequence of functions converges
111121
almost everywhere to the upper bound. Auxiliary version assuming moreover that the

0 commit comments

Comments
 (0)