Zulip Chat Archive
Stream: Is there code for X?
Topic: Measurability of Monotone/Right Continuous functions
Yongxi Lin (Aaron) (Jan 18 2026 at 09:15):
I am pretty sure we don't have the following, but just to double check...
import Mathlib
open MeasureTheory
variable {f : ℝ → ℝ}
theorem RightContinuous.aestronglyMeasurable (hf : ∀ x, ContinuousWithinAt f (Set.Ici x) x) :
AEStronglyMeasurable f := by
sorry
theorem Monotone.aestronglyMeasurable (hf : Monotone f) :
AEStronglyMeasurable f := by
sorry
theorem countable_discontinuities_aestronglyMeasurable (hf : Set.Countable {x | ¬ContinuousAt f x}) :
AEStronglyMeasurable f := by
sorry
Rémy Degenne (Jan 18 2026 at 09:18):
A proof of the second one:
import Mathlib
open MeasureTheory
variable {f : ℝ → ℝ}
theorem Monotone.aestronglyMeasurable (hf : Monotone f) :
AEStronglyMeasurable f :=
hf.measurable.aestronglyMeasurable
Yongxi Lin (Aaron) (Jan 18 2026 at 09:18):
oh yeah on R they are the same!
Ruben Van de Velde (Jan 18 2026 at 09:19):
Does docs#ContinuousOn.aestronglyMeasurable help?
Yongxi Lin (Aaron) (Jan 18 2026 at 09:21):
@Ruben Van de Velde
Yes and this will be related to one of my draft PRs #33586. I am planning to prove that right continuous function is continuous with respect to the lower limit topology in this PR, and then one can take advantage of ContinuousOn.aestronglyMeasurable
Last updated: Feb 28 2026 at 14:05 UTC