Definite Integrals
Unlike the indefinite integral, which represents a family of functions, a definite integral represents a specific numerical value: the net signed area bounded by the graph of a function and the x-axis over a given interval. The formal definition of this area, rigorous bounds, and conditions of integrability were historically formalized by mathematicians such as Bernhard Riemann and Jean Gaston Darboux in the 19th century.
Definite Integral
The definite integral of a continuous function from an interval to , denoted as , geometrically represents the net signed area between the curve , the x-axis, and the vertical lines and .
"Signed area" means that areas above the x-axis are considered positive (adding to the total), while areas below the x-axis are considered negative (subtracting from the total). For example, integrating a sine wave over one full period yields zero because the positive area perfectly cancels the negative area.
Simulation: Riemann Sums & Area
4
Coarse (2)Fine (100)
Area Analysis
Approximation:1.7500
Exact Integral:2.6666
Absolute Error:0.9166
As $n \to \infty$, the width $\Delta x \to 0$, and the Riemann sum converges precisely to the definite integral.
Riemann Sums, Darboux Sums, and Integrability
Before the powerful analytical tools of the Fundamental Theorem were developed, mathematicians relied on exhaustive geometric approximations to find areas under arbitrary curves. The core idea of integral calculus is to break a complex shape into simpler pieces whose area we already know how to calculate—like rectangles.
We can estimate the area under a curve on the interval by dividing the interval into smaller subintervals. For simplicity, we often use subintervals of equal width, given by .
By constructing rectangles over these subintervals, where the height of each rectangle is determined by the function's value at a specific sample point within the subinterval, the sum of the rectangular areas approximates the total area under the curve. This mathematical construction is known as a Riemann sum, named after Bernhard Riemann.
Definite Integral via Riemann Sums
The exact area is the limit of the Riemann sum.
$$
\\int_a^b f(x) \\, dx = \\lim_{n \\to \\infty} \\sum_{i=1}^n f(x_i^*) \\Delta x
$$Checklist
- is a sample point chosen in the -th subinterval . Common choices include: Left Endpoint Rule (), Right Endpoint Rule (), and Midpoint Rule ().
- represents the width of each rectangle.
- represents the height of each rectangle at the sample point.
Rigorous Definition of Integrability: Darboux Sums
While Riemann sums use arbitrary sample points , a more rigorous way to define integrability is through Darboux sums, which use the absolute maximum (supremum) and minimum (infimum) values of the function within each subinterval.
Upper and Lower Darboux Sums
Let be the maximum value of on the -th subinterval, and be the minimum value.
- Upper Darboux Sum: (This overestimates the area).
- Lower Darboux Sum: (This underestimates the area).A function is defined as strictly integrable on if and only if the limit of the upper sums equals the limit of the lower sums as . This shared limit is the true value of the definite integral. Not all functions are integrable; typically, a function must be bounded and continuous (or have only a finite number of jump discontinuities) to be Riemann integrable.
Numerical Integration Techniques
In engineering practice, we often encounter integrands that do not have an elementary antiderivative (like ), or we may only have discrete data points rather than a continuous function formula. In these cases, analytical integration using the Fundamental Theorem is impossible, and we must rely on numerical approximation methods. The two most common methods are the Trapezoidal Rule and Simpson's Rule.
The Trapezoidal Rule
Instead of rectangles, this rule approximates the area using trapezoids connecting the endpoints of each subinterval. It generally provides a better estimate than Riemann sums for a given number of subintervals .
$$
\\int_a^b f(x) \\, dx \\approx \\frac{\\Delta x}{2} \\left[ f(x_0) + 2f(x_1) + 2f(x_2) + \\dots + 2f(x_{n-1}) + f(x_n) \\right]
$$Simpson's Rule
Simpson's Rule provides a highly accurate approximation by fitting parabolas (quadratic curves) through groups of three adjacent points, rather than straight lines. It requires an even number of subintervals ().
$$
\\int_a^b f(x) \\, dx \\approx \\frac{\\Delta x}{3} \\left[ f(x_0) + 4f(x_1) + 2f(x_2) + 4f(x_3) + \\dots + 2f(x_{n-2}) + 4f(x_{n-1}) + f(x_n) \\right]
$$The Significance of the Limit
As , the width of the rectangles . The approximation becomes infinitely precise, transitioning from a discrete sum to a continuous integral.
The Fundamental Theorem of Calculus
The Fundamental Theorem of Calculus (FTC) is arguably the most important theorem in calculus. It elegantly connects the two main branches: differential calculus and integral calculus, showing they are inverse processes.
Part 1: The Accumulation Function
Imagine an "accumulation function" that measures the total accumulated area under a curve from a fixed starting point up to a variable point .
Accumulation Function
The accumulation function calculates the total area up to .
$$
g(x) = \\int_a^x f(t) \\, dt
$$Part 1 of the FTC states that if is continuous on , then this accumulation function is continuous on , differentiable on , and its derivative is exactly the original function:
$$
g'(x) = \\frac{d}{dx} \\left[ \\int_a^x f(t) \\, dt \\right] = f(x)
$$In plain English: The rate at which area is accumulating under the curve at point is exactly equal to the height of the curve at point . This profound statement proves that integration (accumulation) and differentiation (rate of change) are inverse operations.
Part 2: The Evaluation Theorem
While Part 1 provides the theoretical bridge, Part 2 provides the practical computational tool. It is the reason we do not have to calculate infinite Riemann sum limits by hand for most problems.
Fundamental Theorem of Calculus, Part 2
If is continuous on the closed interval , and is any antiderivative of on that interval (meaning ), then the definite integral evaluates simply to the difference of the antiderivative's values at the upper bound and the lower bound .
$$
\\int_a^b f(x) \\, dx = F(b) - F(a)
$$Evaluator Notation
We commonly use a vertical bar or square brackets to denote the intermediate evaluation step before calculating the final subtraction: .
The Net Change Theorem
The Net Change Theorem is an alternative formulation of the Fundamental Theorem of Calculus (Part 2). It states that the integral of a rate of change of a quantity over an interval yields the total net change of that quantity.
Net Change Theorem
If represents the rate of change of a quantity with respect to time , then the definite integral of from time to time gives the net change in the quantity over that time interval.
Physical Examples:
- If is the velocity of an object (rate of change of position), then represents the net displacement. To find the total distance traveled, you must integrate the absolute value: .
- If is the linear density of a rod (mass per unit length at position ), then represents the total mass of the segment of the rod from to .
- If is the marginal cost of producing units, then represents the increase in cost when production increases from units to units.
$$
\\int_a^b Q'(t) \\, dt = Q(b) - Q(a)
$$Essential Properties of Definite Integrals
Understanding the properties of definite integrals simplifies calculations and aids in manipulating integral expressions. Assuming and are continuous functions:
Checklist
- Zero Width Interval (Point Integral): Integrating over a point yields zero area.
- Reversing Limits: Swapping the upper and lower bounds changes the sign of the integral.
- Constant Multiple: Constants can be pulled outside the integral.
- Sum/Difference: The integral of a sum is the sum of integrals.
- Additivity of Intervals: You can split an integral at a point . This is useful for piecewise functions or absolute values.
- Comparison Properties: If for , then . If for , then .
Symmetry Properties: Even and Odd Functions
Integrating symmetric functions over symmetric intervals can significantly reduce computation time. This geometric property is immensely useful in engineering mechanics.
Integrals of Even and Odd Functions
- Even Functions: A function is even if (symmetric about the y-axis, like or ). The area on the left mirrors the right.
- Odd Functions: A function is odd if (symmetric about the origin, like or ). The positive area perfectly cancels the negative area.
$$
\\int_{-a}^a f(x) \\, dx = 2 \\int_0^a f(x) \\, dx \\quad \\text{(Even Function)}
$$$$
\\int_{-a}^a f(x) \\, dx = 0 \\quad \\text{(Odd Function)}
$$Mean Value Theorem for Definite Integrals
The Mean Value Theorem for Definite Integrals guarantees that for any continuous function over a closed interval, there exists at least one point where the function attains its average value. Geometrically, this means there is a rectangle with the same area as the region under the curve.
Average Value and Mean Value Theorem
Average Value of a Function:
The average value of a continuous function on the interval is given by:
Mean Value Theorem for Integrals:
If is continuous on , then there exists a number in such that . That is:
Geometric Interpretation: There is at least one point between and where the height of the curve multiplied by the width forms a rectangle whose area is exactly equal to the total area under the curve.
Improper Integrals
Improper integrals are definite integrals where either one or both of the limits of integration are infinite, or the integrand has a vertical asymptote within the interval of integration.
Type 1: Infinite Intervals of Integration
These occur when one or both of the limits of integration are infinite. We define these using limits:
- If both limits are infinite, we split the integral at any convenient real number (often 0): (Note: Both integrals on the right must converge for the entire integral to converge).
Type 2: Infinite Discontinuities (Vertical Asymptotes)
These occur when the integrand approaches infinity at one or more points within the interval of integration .
- If is continuous on and has an infinite discontinuity at :
- If is continuous on and has an infinite discontinuity at :
- If has an infinite discontinuity at , where , we must split the integral:
The p-Test for Improper Integrals
The -test provides a quick way to determine the convergence or divergence of specific improper integrals of the form without having to explicitly evaluate the limit.
The p-Test
For integrals of the form , where :
- The integral converges if .
- The integral diverges if .
The Comparison Test for Improper Integrals
Sometimes an improper integral cannot be easily evaluated or directly subjected to the -test. However, if the integrand is positive and can be bounded by another function whose convergence is known (like a -test function), we can determine its behavior using the Direct Comparison Test.
Direct Comparison Test
Suppose and are continuous functions such that for all .
- Convergence: If the larger integral converges, then the smaller integral must also converge.
- Divergence: If the smaller integral diverges, then the larger integral must also diverge.
Convergence vs. Divergence
If the limit evaluated in an improper integral exists and yields a finite, real number, the improper integral is said to converge to that value. If the limit does not exist (e.g., it approaches or , or oscillates), the improper integral is said to diverge.
Improper Integral Visualization: ∫ (1/x²) dx from 1 to t
Loading chart...
Area Calculation:
Area(t) = 1 - 1/t
Current Area = 0.5000
As t → ∞, the area approaches 1. The integral converges to 1.
Key Takeaways
- The exact definite integral is formally defined by limits of Darboux sums or Riemann sums.
- The Fundamental Theorem of Calculus (Part 2) evaluates definite integrals by taking the difference of an antiderivative evaluated at the upper and lower bounds ().
- Utilize symmetry (Even/Odd functions) to dramatically simplify integrating over bounds .
- The Mean Value Theorem guarantees a point where a rectangle of height has the exact same area as the region under the curve.
- When analytical integration fails, numerical methods like the Trapezoidal Rule and Simpson's Rule provide robust approximations.
- Improper integrals involving infinite bounds or discontinuities must be strictly evaluated using limits to check for convergence.
- The -test and Direct Comparison Test are invaluable tools for quickly determining if an improper integral yields a finite area without performing the complete integration.