File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Mathlib/MeasureTheory/Integral/Bochner Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -152,9 +152,13 @@ theorem integral_add_compl (hs : MeasurableSet s) (hfi : Integrable f μ) :
152152 ∫ x in s, f x ∂μ + ∫ x in sᶜ, f x ∂μ = ∫ x, f x ∂μ :=
153153 integral_add_compl₀ hs.nullMeasurableSet hfi
154154
155- theorem setIntegral_compl (hs : MeasurableSet s ) (hfi : Integrable f μ) :
155+ theorem setIntegral_compl₀ (hs : NullMeasurableSet s μ ) (hfi : Integrable f μ) :
156156 ∫ x in sᶜ, f x ∂μ = ∫ x, f x ∂μ - ∫ x in s, f x ∂μ := by
157- rw [← integral_add_compl (μ := μ) hs hfi, add_sub_cancel_left]
157+ rw [← integral_add_compl₀ (μ := μ) hs hfi, add_sub_cancel_left]
158+
159+ theorem setIntegral_compl (hs : MeasurableSet s) (hfi : Integrable f μ) :
160+ ∫ x in sᶜ, f x ∂μ = ∫ x, f x ∂μ - ∫ x in s, f x ∂μ :=
161+ setIntegral_compl₀ hs.nullMeasurableSet hfi
158162
159163/-- For a function `f` and a measurable set `s`, the integral of `indicator s f`
160164over the whole space is equal to `∫ x in s, f x ∂μ` defined as `∫ x, f x ∂(μ.restrict s)`. -/
You can’t perform that action at this time.
0 commit comments