6.3 Riemann Sums and the Definite Integral
Key Takeaways
- A Riemann sum approximates the exact net area under a continuous curve on [a, b] by summing the areas of n approximating rectangles of width Delta x = (b - a)/n.
- The four primary approximation schemes are Left Riemann Sum (LRAM), Right Riemann Sum (RRAM), Midpoint Riemann Sum (MRAM), and the Trapezoidal Rule T_n = (LRAM + RRAM)/2.
- Under- and over-estimation behaviors depend strictly on function properties: monotonicity (f') dictates Left vs. Right sums, while concavity (f'') dictates Midpoint vs. Trapezoidal sums.
- When approximating from discrete data tables with unequal subinterval widths, compute each rectangle or trapezoid width Delta x_i = x_i - x_(i-1) individually.
- The definite integral is formally defined as the infinite limit of Riemann sums int_a^b f(x) dx = lim_{n -> inf} sum_{i=1}^n f(x_i*) Delta x, providing the bridge to convert limit summation expressions directly into definite integrals.
6.3 Riemann Sums and the Definite Integral
Core CLEP Concept: Before computing definite integrals symbolically, calculus defines the area under a curve through numerical approximations known as Riemann sums. On the CLEP Calculus exam, questions test your ability to construct Left, Right, Midpoint, and Trapezoidal sums from functions and tables, determine whether an approximation is an overestimate or underestimate based on derivative tests, and convert limit Riemann sum expressions into definite integrals.
1. The Area Problem and Regular Partitions
To find the area bounded by a continuous, non-negative function $y = f(x)$, the $x$-axis, and the vertical lines $x = a$ and $x = b$, we divide the interval $[a, b]$ into $n$ subintervals.
For a regular partition, all $n$ subintervals have equal width:
The grid points partitioning the interval are defined by:
a = x_0 x_1 x_2 x_3 x_n = b
|---------|---------|---------|-- ... --------|
Delta x Delta x Delta x Delta x
On each subinterval $[x_{i-1}, x_i]$, we choose an evaluation sample point $x_i^$ to determine the height of a approximating rectangle: $\text{Area}_i = f(x_i^) \Delta x$.
2. The Four Primary Riemann Approximation Schemes
Depending on how the evaluation point $x_i^*$ is chosen, four standard approximation formulas arise:
Left Sum (LRAM) Right Sum (RRAM) Midpoint (MRAM) Trapezoid (T_n)
x_i* = x_{i-1} x_i* = x_i x_i* = (x_{i-1}+x_i)/2 Average of L & R
+---+ +---+ +---+ /|
| | | | | | / |
| | | | | | / |
----+---+---- ----+---+---- ----+---+---- ---+---+----
x_0 x_1 x_0 x_1 x_0 x_1 x_0 x_1
1. Left Riemann Sum (LRAM)
Evaluates the function at the left endpoint of each subinterval ($x_i^* = x_{i-1}$):
2. Right Riemann Sum (RRAM)
Evaluates the function at the right endpoint of each subinterval ($x_i^* = x_i$):
3. Midpoint Riemann Sum (MRAM)
Evaluates the function at the exact center of each subinterval ($x_i^* = m_i = \frac{x_{i-1} + x_i}{2}$):
4. The Trapezoidal Rule ($T_n$)
Replaces rectangular tops with linear secant chords connecting $(x_{i-1}, f(x_{i-1}))$ and $(x_i, f(x_i))$. The area of each trapezoid is $\frac{f(x_{i-1}) + f(x_i)}{2} \Delta x$. Summing all $n$ trapezoids yields:
Key Identity: The Trapezoidal approximation is precisely the arithmetic mean of the Left and Right Riemann sums:
3. Overestimate vs. Underestimate Analysis
The relationship between Riemann approximations and the exact value of the integral $I = \int_a^b f(x) , dx$ depends strictly on the geometric shape of $f(x)$:
Monotonicity Rules (First Derivative $f'(x)$)
Monotonicity controls Left versus Right sum behavior:
| Function Behavior | Condition | Left Sum ($L_n$) | Right Sum ($R_n$) | Inequality Chain |
|---|---|---|---|---|
| Strictly Increasing | $f'(x) > 0$ | Underestimate | Overestimate | $L_n < \int_a^b f(x) , dx < R_n$ |
| Strictly Decreasing | $f'(x) < 0$ | Overestimate | Underestimate | $R_n < \int_a^b f(x) , dx < L_n$ |
Concavity Rules (Second Derivative $f''(x)$)
Concavity controls Midpoint versus Trapezoidal sum behavior:
| Function Concavity | Condition | Trapezoidal Rule ($T_n$) | Midpoint Rule ($M_n$) | Inequality Chain |
|---|---|---|---|---|
| Concave Up | $f''(x) > 0$ | Overestimate (secant chords lie above curve) | Underestimate (midpoint tangents lie below curve) | $M_n < \int_a^b f(x) , dx < T_n$ |
| Concave Down | $f''(x) < 0$ | Underestimate (secant chords lie below curve) | Overestimate (midpoint tangents lie above curve) | $T_n < \int_a^b f(x) , dx < M_n$ |
Combined Classification Matrix
For a function that is strictly decreasing and concave up on $[a, b]$:
4. Tabular Riemann Sums with Unequal Subintervals
On the CLEP exam, data is frequently given in a discrete table where the step size $\Delta x_i = x_i - x_{i-1}$ varies between adjacent points. You cannot factor out a single $\Delta x$; you must calculate each subregion independently.
Step-by-Step Worked Example: Tabular Data
Problem: The velocity $v(t)$ of a vehicle is recorded at selected times $t$ (in seconds) in the table below:
| $t$ (seconds) | 0 | 3 | 7 | 8 | 12 |
|---|---|---|---|---|---|
| $v(t)$ (ft/sec) | 12 | 18 | 24 | 20 | 30 |
Compute the approximate distance traveled $\int_0^{12} v(t) , dt$ using:
- A Left Riemann Sum with 4 subintervals.
- A Trapezoidal Sum with 4 subintervals.
Part 1: Left Riemann Sum ($L_4$)
- Interval 1 $[0, 3]$: $\Delta t_1 = 3 - 0 = 3$. Left value $v(0) = 12$. $\text{Area}_1 = 3(12) = 36$.
- Interval 2 $[3, 7]$: $\Delta t_2 = 7 - 3 = 4$. Left value $v(3) = 18$. $\text{Area}_2 = 4(18) = 72$.
- Interval 3 $[7, 8]$: $\Delta t_3 = 8 - 7 = 1$. Left value $v(7) = 24$. $\text{Area}_3 = 1(24) = 24$.
- Interval 4 $[8, 12]$: $\Delta t_4 = 12 - 8 = 4$. Left value $v(8) = 20$. $\text{Area}_4 = 4(20) = 80$.
Part 2: Trapezoidal Sum ($T_4$)
- Interval 1 $[0, 3]$: $\text{Area}_1 = \frac{12 + 18}{2} \cdot 3 = 15 \cdot 3 = 45$.
- Interval 2 $[3, 7]$: $\text{Area}_2 = \frac{18 + 24}{2} \cdot 4 = 21 \cdot 4 = 84$.
- Interval 3 $[7, 8]$: $\text{Area}_3 = \frac{24 + 20}{2} \cdot 1 = 22 \cdot 1 = 22$.
- Interval 4 $[8, 12]$: $\text{Area}_4 = \frac{20 + 30}{2} \cdot 4 = 25 \cdot 4 = 100$.
5. Formal Limit Definition of the Definite Integral
If $f$ is continuous on $[a, b]$, the exact definite integral is defined as the limit of Riemann sums as the number of subintervals approaches infinity ($n \to \infty$):
Reverse-Engineering Limits into Definite Integrals
CLEP questions often present a complex limit of a summation and ask you to identify the equivalent definite integral. Follow this 4-step decoding process:
- Identify $\Delta x$: The term of the form $\frac{k}{n}$ factoring the sum is $\Delta x = \frac{b - a}{n}$, establishing the interval length $b - a = k$.
- Identify the base point $a$ and grid points $x_i$: Look for $a + \frac{ki}{n}$. If the term is simply $\frac{ki}{n}$, then $a = 0$.
- Determine upper limit $b$: $b = a + k$.
- Extract the function $f(x)$: Replace the expression $\left(a + \frac{ki}{n}\right)$ with $x$.
Step-by-Step Worked Example: Limit Translation
Problem: Express $\lim_{n \to \infty} \sum_{i=1}^n \left( 3 + \frac{5i}{n} \right)^4 \left( \frac{5}{n} \right)$ as a definite integral.
- Step 1: $\Delta x = \frac{5}{n} \implies b - a = 5$.
- Step 2: The argument is $x_i = 3 + \frac{5i}{n} \implies a = 3$.
- Step 3: $b = a + 5 = 3 + 5 = 8$.
- Step 4: The expression is $(x_i)^4 \implies f(x) = x^4$.
- Result: $\int_3^8 x^4 , dx$.
6. Common CLEP Pitfalls & Traps
- Blindly Using the Uniform Trapezoidal Formula on Tables: The formula $\frac{\Delta x}{2}[f(x_0) + 2f(x_1) + \dots + f(x_n)]$ requires equal interval widths. If $\Delta t$ varies across table columns, you must compute each trapezoid independently.
- Confusing Concavity with Monotonicity: First derivatives ($f' > 0$ or $f' < 0$) govern Left vs. Right sum over/under-estimates. Second derivatives ($f'' > 0$ or $f'' < 0$) govern Midpoint vs. Trapezoid over/under-estimates.
- Off-by-One Endpoint Errors: In an $n = 4$ Left Riemann Sum, use $f(x_0), f(x_1), f(x_2), f(x_3)$ (do not include the rightmost endpoint $f(x_4)$). In a Right sum, use $f(x_1), f(x_2), f(x_3), f(x_4)$ (do not include $f(x_0)$).
A vehicle's velocity v(t) in ft/sec is recorded at selected times t in seconds: (0, 10), (2, 14), (5, 20), (9, 16), (10, 22). Using a Trapezoidal Sum with the four subintervals indicated by the table, what is the approximate total distance traveled by the vehicle from t = 0 to t = 10?
Suppose f(x) is a strictly decreasing and concave-up function on the interval [2, 8]. Let L_n, R_n, M_n, and T_n represent the Left, Right, Midpoint, and Trapezoidal Riemann sums for int_2^8 f(x) dx with n equal subdivisions. Which of the following inequalities correctly ranks these approximations relative to the exact integral I = int_2^8 f(x) dx?
Which of the following definite integrals is equivalent to the limit of the Riemann sum: lim_{n -> inf} sum_{i=1}^n (3/n) * sqrt(4 + 3i/n)?
Evaluate the Midpoint Riemann Sum M_4 for the function f(x) = x^2 - 2x + 3 on the interval [0, 8] using n = 4 subintervals of equal width.