English
If f is Lipschitz on uIcc a b, then f is absolutely continuous on a b.
Русский
Если f липшицево ограничена на uIcc(a,b), то она абсолютно непрерывна на [a,b].
LaTeX
$$$\text{LipschitzOnWith}(K,f,\mathrm{uIcc}(a,b)) \Rightarrow \text{AbsolutelyContinuousOnInterval}(f,a,b)$$$
Lean4
/-- If `f` is Lipschitz on `uIcc a b`, then `f` is absolutely continuous on `uIcc a b`. -/
theorem _root_.LipschitzOnWith.absolutelyContinuousOnInterval {f : ℝ → X} {K : ℝ≥0}
(hfK : LipschitzOnWith K f (uIcc a b)) : AbsolutelyContinuousOnInterval f a b :=
by
rw [absolutelyContinuousOnInterval_iff]
intro ε hε
refine ⟨ε / (K + 1), by positivity, fun (n, I) hnI₁ hnI₂ ↦ ?_⟩
calc
_ ≤ ∑ i ∈ Finset.range n, K * dist (I i).1 (I i).2 :=
by
apply Finset.sum_le_sum
intro i hi
have := hfK (hnI₁.left i hi).left (hnI₁.left i hi).right
apply ENNReal.toReal_mono (Ne.symm (not_eq_of_beq_eq_false rfl))at this
rwa [ENNReal.toReal_mul, ← dist_edist, ← dist_edist] at this
_ = K * ∑ i ∈ Finset.range n, dist (I i).1 (I i).2 := by symm; exact Finset.mul_sum _ _ _
_ ≤ K * (ε / (K + 1)) := by gcongr
_ < (K + 1) * (ε / (K + 1)) := by gcongr; linarith
_ = ε := by field_simp