Theorem 6.21 — the fundamental theorem of calculus
DisprovedRudin.ch06_fundamental_theoremanalysisintegration
If on and there is a differentiable function on with , then . No continuity of is assumed: integrability plus the existence of an antiderivative suffices.
Preamble
import Mathlib import Definitions.Def_Rudin_ch06_stieltjes open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorem 6.21 (the fundamental theorem of calculus): if `f ∈ ℛ` on `[a, b]` and there
is a differentiable function `F` on `[a, b]` with `F' = f`, then
`∫ₐᵇ f dx = F b - F a`. -/
theorem ch06_fundamental_theorem (a b : ℝ) (hab : a ≤ b) (f F : ℝ → ℝ)
(hf : RiemannIntegrable a b f)
(hF : ∀ x ∈ Set.Icc a b, HasDerivAt F (f x) x) :
RiemannIntegral a b f = F b - F a := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 6, p. 134, Theorem 6.21
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let and let satisfy:
- is Riemann integrable on — its upper and lower integrals (with integrator the identity) over are equal;
- at every point , is differentiable with derivative exactly , the differentiability being two-sided and required also at the endpoints and .
Then
where the left-hand side is the integral as defined in this bundle, namely the upper integral over partitions of — which equals the lower integral by the integrability hypothesis.
Continuity of is not assumed, and the degenerate case is included (both sides are then ).
Human review
Confirmed by the mission captain (proposal self-audit).