We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
IntegrableOn.tendsto_integral_Iio
1 parent 6559776 commit 803ed4aCopy full SHA for 803ed4a
1 file changed
Mathlib/MeasureTheory/Integral/IntegralEqImproper.lean
@@ -630,6 +630,12 @@ theorem IntegrableOn.tendsto_integral_Ioi {ι E : Type*} [NormedAddCommGroup E]
630
Tendsto (fun i ↦ ∫ x in Ioi (b i), f x) l (𝓝 (∫ x in Ioi a, f x)) :=
631
(hf.tendsto_primitive_Ioi le_rfl).comp hb
632
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
+
639
open Real
640
641
open scoped Interval
0 commit comments