Zulip Chat Archive
Stream: Is there code for X?
Topic: bochner integral over set of measure zero is zero
Pietro Lavino (Jul 13 2024 at 05:37):
I have an integral of the form
where
is there a theorem stating that the integral must be zero, can't seem to find it
Daniel Weber (Jul 13 2024 at 07:21):
Is docs#MeasureTheory.integral_eq_zero_of_ae what you want? EDIT: nvm, I mistunderstood
Daniel Weber (Jul 13 2024 at 07:29):
You should be able to conclude this from docs#MeasureTheory.setIntegral_eq_zero_of_ae_eq_zero
Sébastien Gouëzel (Jul 13 2024 at 07:57):
I haven't found it exactly, but it's pretty quick:
theorem setIntegral_eq_zero_of_measure_eq_zero (ht : μ t = 0) :
∫ x in t, f x ∂μ = 0 := by
simp [Measure.restrict_eq_zero.mpr ht]
PR welcome!
Last updated: May 02 2025 at 03:31 UTC