Skip to content

Commit 803ed4a

Browse files
committed
feat(MeasureTheory/Integral/IntegralEqImproper): add IntegrableOn.tendsto_integral_Iio
1 parent 6559776 commit 803ed4a

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Mathlib/MeasureTheory/Integral/IntegralEqImproper.lean

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,12 @@ theorem IntegrableOn.tendsto_integral_Ioi {ι E : Type*} [NormedAddCommGroup E]
630630
Tendsto (fun i ↦ ∫ x in Ioi (b i), f x) l (𝓝 (∫ x in Ioi a, f x)) :=
631631
(hf.tendsto_primitive_Ioi le_rfl).comp hb
632632

633+
theorem IntegrableOn.tendsto_integral_Iio {ι E : Type*} [NormedAddCommGroup E] [NormedSpace ℝ E]
634+
{a : ℝ} {f : ℝ → E} (hf : IntegrableOn f (Iio a)) {b : ι → ℝ} {l : Filter ι}
635+
(hb : Tendsto b l (𝓝[≤] a)) :
636+
Tendsto (fun i ↦ ∫ x in Iio (b i), f x) l (𝓝 (∫ x in Iio a, f x)) :=
637+
(hf.tendsto_primitive_Iio le_rfl).comp hb
638+
633639
open Real
634640

635641
open scoped Interval

0 commit comments

Comments
 (0)