Zulip Chat Archive

Stream: Is there code for X?

Topic: MeasureTheory.set_integral_mono restricted to set


Alex Kontorovich (Mar 29 2024 at 19:46):

We have MeasureTheory.set_integral_mono, but it asks for f ≤ g everywhere; we should only need this restricted to s, right? That is, does this really not exist?

theorem MeasureTheory.set_integral_mono' {X : Type*} [MeasurableSpace X]
    {μ : MeasureTheory.Measure X} {f : X  } {g : X  } {s : Set X}
    (hf : MeasureTheory.IntegrableOn f s μ) (hg : MeasureTheory.IntegrableOn g s μ)
    (h :  x  s, f x  g x) :
     (x : X) in s, f x μ   (x : X) in s, g x μ := by
  sorry

Josha Dekker (Mar 29 2024 at 19:55):

I think the other is easier in some (but certainly not all!) situations, but this one would certainly be good to have!

Ruben Van de Velde (Mar 29 2024 at 19:56):

That's docs#MeasureTheory.set_integral_mono_on_ae if s is measurable

Alex Kontorovich (Mar 29 2024 at 19:57):

Great thanks! That's what I was looking for...

Alex Kontorovich (Mar 29 2024 at 20:17):

Ok docs#MeasureTheory.set_integral_mono_on is exactly what I wanted...


Last updated: May 02 2025 at 03:31 UTC