Theorem 6.12(c) — additivity of the integral over adjacent intervals
ProvedRudin.ch06_integral_additive_of_boundedLet be monotonically increasing on and let be a bounded real function on which is Riemann--Stieltjes integrable with respect to , written . This is the additivity of the integral over adjacent intervals: for every with ,
Here is the common value of the upper integral and the lower integral taken over all partitions of the interval, as in Rudin's Definition 6.2.
This is assertion (c) of Rudin's Theorem 6.12, isolated as a reusable lemma: it is the statement that lets an integral be computed piecewise, and it is used throughout the chapter and in the theory of the indefinite integral .
Formalization Note Rudin's Definition 6.2 assumes throughout that the integrand is bounded on the interval of integration; that hypothesis is stated explicitly here as hfb, since the formalized upper and lower integrals are ordinary suprema and infima of sets of real numbers, which take a default value on unbounded sets. The endpoint cases and are included and are degenerate.
import Mathlib import Definitions.Def_Rudin_ch06_stieltjes open Filter Topology
namespace Rudin
/-- Rudin, Theorem 6.12(c), with the boundedness hypothesis of Chapter 6: if `f` is bounded and
integrable with respect to a monotonically increasing `α` on `[a, b]`, then `f` is integrable on
each of `[a, c]` and `[c, b]` for `c ∈ [a, b]`, and the two integrals add up to the integral over
`[a, b]`. -/
theorem ch06_integral_additive_of_bounded (a b : ℝ) (hab : a ≤ b) (f α : ℝ → ℝ)
(hα : MonotoneOn α (Set.Icc a b))
(hfb : ∃ M, ∀ x ∈ Set.Icc a b, |f x| ≤ M)
(hf : RSIntegrable a b f α) :
∀ c ∈ Set.Icc a b, RSIntegrable a c f α ∧ RSIntegrable c b f α ∧
RSIntegral a c f α + RSIntegral c b f α = RSIntegral a b f α := by sorry
end Rudin