Fundamental Theorem of Calculus
Statement
Part I (Antiderivative): If is continuous on and , then is differentiable on with .
Part II (Evaluation): If is integrable on and has derivative at every point in , then:
This is the central theorem connecting the two branches of calculus.
Visualization
Approximate (exact answer: ) using the trapezoid rule with strips of width :
| Strip | Trapezoid area | ||
|---|---|---|---|
| 2.0 | 3.0 | 1.25 | |
| 3.0 | 4.0 | 1.75 | |
| 4.0 | 5.0 | 2.25 | |
| 5.0 | 6.0 | 2.75 | |
| Total | 8.00 ✓ |
The trapezoid sum converges to as , illustrating Part II.
f'(x) = 2x
6 | *
| /
4 | *
| area=8 (exact)
2 | *
+--+---+---+--
1 2 3
Proof Sketch
Part II:
- Partition: Subdivide into subintervals .
- Apply MVT on each strip: By the Mean Value TheoremMean Value TheoremThere exists a point where the instantaneous rate of change equals the average rate of changeRead more →, for each there exists with .
- Telescope: Sum over all strips — the left side telescopes to .
- Take limit: As the mesh , the right side converges to by definition of the Riemann integral.
Connections
- Mean Value TheoremMean Value TheoremThere exists a point where the instantaneous rate of change equals the average rate of changeRead more → — the key lemma applied subinterval-by-subinterval in the proof
- Chain RuleChain RuleDifferentiate composite functions by peeling layersRead more → — generalises FTC to compositions:
- Taylor's TheoremTaylor's TheoremApproximate smooth functions by polynomials with explicit error boundsRead more → — Taylor's theorem can be derived by applying FTC repeatedly ( times)
- L’Hôpital's Rule — evaluation of many limits uses FTC to identify derivative values
- Intermediate Value TheoremIntermediate Value TheoremA continuous function on a closed interval hits every value between its endpointsRead more → — continuity of (required by Part I) is also the hypothesis of IVT
Lean4 Proof
import Mathlib.MeasureTheory.Integral.IntervalIntegral.FundThmCalculus
open MeasureTheory intervalIntegral
/-- Fundamental Theorem of Calculus Part II: the integral of `f'` over `[a, b]`
equals `f b - f a`. Wraps Mathlib's `integral_eq_sub_of_hasDerivAt`. -/
theorem ftc {f f' : ℝ → ℝ} {a b : ℝ}
(hderiv : ∀ x ∈ Set.uIcc a b, HasDerivAt f (f' x) x)
(hint : IntervalIntegrable f' MeasureTheory.volume a b) :
∫ x in a..b, f' x = f b - f a :=
integral_eq_sub_of_hasDerivAt hderiv hintReferenced by
- L'Hôpital's RuleCalculus
- Taylor's TheoremCalculus
- Taylor's TheoremCalculus
- Intermediate Value TheoremCalculus
- Mean Value TheoremCalculus
- Absolutely Continuous FunctionsAnalysis
- Dominated Convergence TheoremAnalysis
- Monotone Class TheoremAnalysis
- Fubini's TheoremAnalysis
- Linear ODE General SolutionDifferential Equations
- Integrating Factor MethodDifferential Equations
- Discrete LogarithmNumber Theory
- Divergence Theorem (Gauss)Differential Geometry
- Green's TheoremDifferential Geometry