Skip to content

Commit 85578c0

Browse files
committed
refactor(MeasureTheory/Integral/IntegralEqImproper): remove redundant theorems
1 parent 18c2b8a commit 85578c0

1 file changed

Lines changed: 0 additions & 26 deletions

File tree

Mathlib/MeasureTheory/Integral/IntegralEqImproper.lean

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -624,32 +624,6 @@ theorem intervalIntegral_tendsto_integral_Ioi (a : ℝ) (hfi : IntegrableOn f (I
624624

625625
end IntegralOfIntervalIntegral
626626

627-
theorem IntegrableOn.tendsto_integral_Ioi {ι E : Type*} [NormedAddCommGroup E] [NormedSpace ℝ E]
628-
{a : ℝ} {f : ℝ → E} (hf : IntegrableOn f (Ioi a)) {b : ι → ℝ} {l : Filter ι}
629-
(hb : Tendsto b l (𝓝[≥] a)) :
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-
theorem IntegrableOn.tendsto_integral_Ici {ι E : Type*} [NormedAddCommGroup E] [NormedSpace ℝ E]
640-
{μ : Measure ℝ} [NoAtoms μ] {a : ℝ} {f : ℝ → E} (hf : IntegrableOn f (Ici a) μ)
641-
{b : ι → ℝ} {l : Filter ι} (hb : Tendsto b l (𝓝[≥] a)) :
642-
Tendsto (fun i ↦ ∫ x in Ici (b i), f x ∂μ) l (𝓝 (∫ x in Ici a, f x ∂μ)) := by
643-
simp_rw [integral_Ici_eq_integral_Ioi]
644-
exact ((hf.mono_set Ioi_subset_Ici_self).tendsto_primitive_Ioi le_rfl).comp hb
645-
646-
theorem IntegrableOn.tendsto_integral_Iic {ι E : Type*} [NormedAddCommGroup E] [NormedSpace ℝ E]
647-
{μ : Measure ℝ} [NoAtoms μ] {a : ℝ} {f : ℝ → E} (hf : IntegrableOn f (Iic a) μ)
648-
{b : ι → ℝ} {l : Filter ι} (hb : Tendsto b l (𝓝[≤] a)) :
649-
Tendsto (fun i ↦ ∫ x in Iic (b i), f x ∂μ) l (𝓝 (∫ x in Iic a, f x ∂μ)) := by
650-
simp_rw [integral_Iic_eq_integral_Iio]
651-
exact ((hf.mono_set Iio_subset_Iic_self).tendsto_primitive_Iio le_rfl).comp hb
652-
653627
open Real
654628

655629
open scoped Interval

0 commit comments

Comments
 (0)