Riemann Sums Formula
The Formula
x_i^* is the sample point (left, right, or midpoint) in each subinterval.
When to use: Imagine filling the area under a curve with thin rectangles. The more rectangles you use, the better the approximation. In the limit of infinitely many infinitely thin rectangles, you get the exact area—which is the definite integral.
Quick Example
\Delta x = 0.5, \quad \sum = 0.5[0.25 + 1 + 2.25 + 4] = 0.5 \times 7.5 = 3.75
Exact value: \frac{8}{3} \approx 2.667. The overestimate is because x^2 is increasing.
Notation
What This Formula Means
A method of approximating the definite integral \int_a^b f(x)\,dx by dividing the interval [a, b] into subintervals and summing the areas of rectangles (or trapezoids) whose heights are determined by the function.
Imagine filling the area under a curve with thin rectangles. The more rectangles you use, the better the approximation. In the limit of infinitely many infinitely thin rectangles, you get the exact area—which is the definite integral.
Formal View
Worked Examples
Example 1
easySolution
- 1 \Delta x = 0.5. Left endpoints: x = 0, 0.5, 1, 1.5.
- 2 f(0)=0,\; f(0.5)=0.25,\; f(1)=1,\; f(1.5)=2.25.
- 3 L_4 = 0.5(0+0.25+1+2.25) = 0.5 \times 3.5 = 1.75.
- 4 Exact value: \frac{8}{3} \approx 2.667. The left sum underestimates because f is increasing.
Answer
Example 2
mediumCommon Mistakes
- Forgetting that \Delta x = \frac{b-a}{n}, not just \frac{1}{n}—the width depends on the interval length, not just the number of rectangles.
- Confusing left and right sums: for a left sum, use f(x_{i-1}); for a right sum, use f(x_i). Drawing a picture helps enormously.
- Assuming more rectangles always means more accuracy for a specific method—while this is true in the limit, for a fixed n, midpoint and trapezoidal methods often outperform left/right sums.
Why This Formula Matters
Riemann sums provide the conceptual foundation for the definite integral and are the basis for numerical integration methods used in engineering and computer science when exact antiderivatives don't exist.
Frequently Asked Questions
What is the Riemann Sums formula?
A method of approximating the definite integral \int_a^b f(x)\,dx by dividing the interval [a, b] into subintervals and summing the areas of rectangles (or trapezoids) whose heights are determined by the function.
How do you use the Riemann Sums formula?
Imagine filling the area under a curve with thin rectangles. The more rectangles you use, the better the approximation. In the limit of infinitely many infinitely thin rectangles, you get the exact area—which is the definite integral.
What do the symbols mean in the Riemann Sums formula?
L_n = left Riemann sum, R_n = right Riemann sum, M_n = midpoint sum, T_n = trapezoidal sum.
Why is the Riemann Sums formula important in Math?
Riemann sums provide the conceptual foundation for the definite integral and are the basis for numerical integration methods used in engineering and computer science when exact antiderivatives don't exist.
What do students get wrong about Riemann Sums?
For an increasing function, left sums underestimate and right sums overestimate. For a decreasing function, it's the opposite. Midpoint and trapezoidal sums are generally more accurate.
What should I learn before the Riemann Sums formula?
Before studying the Riemann Sums formula, you should understand: integral, definite integral.
Want the Full Guide?
This formula is covered in depth in our complete guide:
How to Integrate Rational Functions: Long Division and Partial Fractions →