Theorem 6.17 fails without the integrability of
ProvedRudin.ch06_reduction_to_riemann_needs_integrable_derivativeRudin's Theorem 6.17 (Principles of Mathematical Analysis, 3rd edition, Theorem 6.17) reduces a Stieltjes integral to a Riemann integral with a density: if increases monotonically, on and is bounded, then if and only if , and in that case
This statement asserts that the hypothesis is indispensable: it cannot be weakened to " is differentiable on with bounded derivative", even though all the boundedness hypotheses of Chapter 6 are then in force. Precisely, there exists such that
- is monotonically increasing on ;
- is differentiable at every point of ;
- is bounded on ;
- on ;
- the bounded integrand satisfies , while .
Clauses 1-3 are exactly the hypotheses of Theorem 6.17 with deleted, and clause 5 is the failure of its conclusion, so the theorem is sharp in this respect.
Such an exists by a construction of Volterra type. Delete from a small interval around each rational, with the total length of the deleted intervals less than ; the remaining closed set has empty interior and measure at least . On each interval complementary to place the bump
which vanishes to second order at both endpoints — so the assembled function is differentiable with derivative at every point of — while its derivative oscillates between values arbitrarily close to and to as . Adding makes the assembled function increasing with derivative bounded by . Its derivative then oscillates by at least on every subinterval meeting , so every partition of satisfies and , whereas the sums of the constant integrand against telescope, so with .
Some such construction is unavoidable: by Lebesgue's criterion a bounded derivative fails to be Riemann integrable exactly when its set of discontinuities has positive measure, which forces the discontinuity set to contain a nowhere dense closed set of positive measure.
import Mathlib import Definitions.Def_Rudin_ch06_stieltjes open Filter Topology
namespace Rudin
/-- Rudin, Theorem 6.17, sharpness: the hypothesis `α' ∈ ℛ` cannot be dropped, even with all
the boundedness hypotheses of Chapter 6 in force. There is a monotonically increasing `α`,
differentiable at every point of `[0,1]` with bounded derivative, whose derivative is not
Riemann integrable, while the bounded integrand `f = 1` satisfies `f ∈ ℛ(α)`. -/
theorem ch06_reduction_to_riemann_needs_integrable_derivative :
∃ α : ℝ → ℝ,
MonotoneOn α (Set.Icc 0 1) ∧
(∀ x ∈ Set.Icc (0:ℝ) 1, HasDerivAt α (deriv α x) x) ∧
(∃ K, ∀ x ∈ Set.Icc (0:ℝ) 1, |deriv α x| ≤ K) ∧
¬ RiemannIntegrable 0 1 (deriv α) ∧
RSIntegrable 0 1 (fun _ => (1:ℝ)) α ∧
¬ RiemannIntegrable 0 1 (fun x => (1:ℝ) * deriv α x) := by sorry
end Rudin