File tree Expand file tree Collapse file tree
Mathlib/MeasureTheory/Integral Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -787,6 +787,32 @@ theorem IntegrableOn.continuousOn_primitive_Iio [NoAtoms μ] {a : ℝ}
787787
788788end PrimitiveIio
789789
790+ section PrimitiveIci
791+
792+ theorem IntegrableOn.continuousOn_primitive_Ici [NoAtoms μ] {a : ℝ}
793+ (hf : IntegrableOn f (Ici a) μ) :
794+ ContinuousOn (fun b ↦ ∫ x in Ici b, f x ∂μ) (Ici a) := by
795+ conv =>
796+ arg 1
797+ ext b
798+ rw [integral_Ici_eq_integral_Ioi]
799+ exact (hf.mono_set Ioi_subset_Ici_self).continuousOn_primitive_Ioi
800+
801+ end PrimitiveIci
802+
803+ section PrimitiveIci
804+
805+ theorem IntegrableOn.continuousOn_primitive_Iic [NoAtoms μ] {a : ℝ}
806+ (hf : IntegrableOn f (Iic a) μ) :
807+ ContinuousOn (fun b ↦ ∫ x in Iic b, f x ∂μ) (Iic a) := by
808+ conv =>
809+ arg 1
810+ ext b
811+ rw [integral_Iic_eq_integral_Iio]
812+ exact (hf.mono_set Iio_subset_Iic_self).continuousOn_primitive_Iio
813+
814+ end PrimitiveIci
815+
790816end MeasureTheory
791817
792818end DominatedConvergenceTheorem
You can’t perform that action at this time.
0 commit comments