Definite Integrals and the Fundamental Theorem
The definite integral measures accumulated change. It begins as a limit of sums, where many small pieces are added to approximate area, distance, mass, or any quantity built from a rate. The Fundamental Theorem of Calculus then connects this accumulation process to antiderivatives, making exact evaluation practical.
This topic is the hinge between differential and integral calculus. Derivatives measure local change; definite integrals add local contributions over an interval. The Fundamental Theorem says these operations are inverse in a precise sense, provided the hypotheses are satisfied.
Definitions
Let be defined on . Partition the interval into subintervals
Let
and choose a sample point in each subinterval. A Riemann sum is
If these sums approach a common limit as the partition widths shrink to zero, that limit is the definite integral:
When , the integral represents area under the curve. When takes positive and negative values, the integral represents signed area: regions above the -axis count positively and regions below count negatively.
The net change theorem says that if , then
The average value of a continuous function on is
Different choices of sample points produce familiar approximations. Left endpoint sums use , right endpoint sums use , and midpoint sums use the midpoint of each subinterval. For increasing positive functions, left sums underestimate area and right sums overestimate area. For decreasing positive functions, the direction reverses. Midpoint and trapezoidal approximations often improve accuracy because their local errors partly balance.
The symbol records the variable and the limiting slice width. In a one-variable integral, it reminds us that the thin piece has width measured in units. In substitution and multivariable calculus, this bookkeeping becomes essential because changing variables changes the differential factor.
Key results
The Fundamental Theorem of Calculus has two common parts.
Part 1: If is continuous on and
then
This says that the rate of change of accumulated area is the current height of the graph.
Part 2: If is continuous on and is any antiderivative of , then
A proof sketch for Part 1 uses the difference quotient:
For small , continuity makes close to throughout , so the integral is close to . Dividing by gives a value close to , and the limit is .
Basic definite integral properties include:
Additivity over intervals is essential:
If on , then
This comparison principle supports estimates, bounds, and later improper integral tests.
The definite integral has units. If is measured in meters per second and in seconds, then is measured in meters. If is density in kilograms per meter and is length, the integral gives kilograms.
Net change and total change are different. If is velocity, then
gives displacement, while
gives total distance traveled. The absolute value is necessary because motion in the negative direction should still add to distance.
Symmetry can simplify definite integrals. If is odd, then
If is even, then
These formulas follow from cancellation or doubling of symmetric areas. They are useful for trigonometric functions, polynomials, and probability densities.
The Mean Value Theorem for Integrals says that if is continuous on , then there is some such that
Geometrically, some actual function height equals the average height. This theorem is an integral analogue of the ordinary Mean Value Theorem.
For numerical approximation, the size of the subintervals matters. A regular partition with equal pieces has width
Right endpoint sums have the form
As increases, these approximations usually improve for continuous functions. The limit definition is not meant to be a practical way to evaluate every integral by hand, but it explains why an integral is an accumulation and why numerical integration is possible.
The Fundamental Theorem also explains why differentiation and integration are inverse processes only under the right interpretation. Differentiating an accumulation function returns the integrand. Integrating a derivative returns net change, not the original function with no information lost:
To recover exactly, the starting value must be known.
Continuity is a sufficient condition for integrability, but not the only one. Many functions with jump discontinuities are still Riemann integrable if they are bounded and the discontinuities are not too wild. In a first calculus course, continuity is the main safe hypothesis because it guarantees both integrability and the Fundamental Theorem statements used for computation.
The orientation rule is more than notation. It keeps substitution formulas consistent when a change of variables reverses limits. If decreases as increases, then the transformed bounds may appear in reverse order, and the negative sign is handled automatically by the integral orientation convention.
Visual
| Concept | Expression | Meaning |
|---|---|---|
| Riemann sum | finite accumulation | |
| Definite integral | limiting accumulation | |
| Antiderivative evaluation | exact integral via FTC | |
| Average value | constant height with same area | |
| Net change |
ASCII view of signed area:
y
^
+ | area above axis counts +
| /\
| / \
-------+-----/----\----------> x
| \__
- | \__ area below axis counts -
Worked example 1: exact integral from an antiderivative
Problem. Evaluate
and interpret the result as signed area.
Method.
- Find an antiderivative term by term:
- Let
- Apply the Fundamental Theorem:
- Evaluate:
- Subtract:
Checked answer. The definite integral is . Because the integrand changes sign on the interval, this is signed area, not total geometric area. Regions below the axis subtract from regions above the axis.
To find total area, one would first locate zeros of the integrand:
The sign changes at and . The total area on would require integrating the absolute value or splitting at those points. This illustrates why the word "area" must be read carefully in definite integral problems.
If the original problem asks for displacement, the signed integral is the correct quantity. If it asks for total distance or total geometric area, signs must not cancel. The same computed integral can therefore answer different applied questions only after the interpretation is specified.
Worked example 2: derivative of an accumulation function
Problem. Let
Find .
Method.
-
Recognize that the upper limit is not but .
-
Define
Then by FTC Part 1,
- Since , use the chain rule:
- Substitute:
- Simplify:
Checked answer. . The factor is required by the chain rule because the accumulation endpoint moves at rate .
Code
def trapezoid(f, a, b, n=10000):
h = (b - a) / n
total = 0.5 * (f(a) + f(b))
for i in range(1, n):
total += f(a + i * h)
return total * h
def f(x):
return 3*x*x - 4*x + 1
print(trapezoid(f, 0, 2))
Common pitfalls
- Forgetting that definite integrals give signed area, not always total area.
- Omitting endpoint evaluation order. , not .
- Dropping the chain-rule factor when differentiating .
- Including in a definite integral evaluation. Constants cancel in .
- Ignoring units. An integral of a rate has accumulated units.
- Assuming every Riemann sum uses right endpoints. Left, right, midpoint, and arbitrary sample points can all converge to the same integral for integrable functions.
Connections
- Optimization Newton and Antiderivatives: antiderivatives provide the evaluation step in the FTC.
- Integration Techniques and Improper Integrals: techniques expand the set of computable antiderivatives.
- Applications of Integrals: area, volume, work, and mass use definite integrals.
- Multiple Integrals: Riemann sums extend to regions in the plane and space.