Riemann sums, summation notation, definite integral notation — AP Calculus BC
1. Summation Notation and Algebraic Rules ★★☆☆☆ ⏱ 4 min
To simplify summations for evaluation or limit-taking for Riemann sums, you need to memorize these core algebraic rules and power sum formulas:
- Constant multiple rule: $\sum_{i=1}^n c a_i = c \sum_{i=1}^n a_i$ for any constant $c$
- Sum/difference rule: $\sum_{i=1}^n (a_i \pm b_i) = \sum_{i=1}^n a_i \pm \sum_{i=1}^n b_i$
- Constant summation: $\sum_{i=1}^n c = nc$
- Power sums: $\sum_{i=1}^n i = \frac{n(n+1)}{2}$, $\sum_{i=1}^n i^2 = \frac{n(n+1)(2n+1)}{6}$
Exam tip: If you are evaluating a finite summation for a MCQ, cross-check your result by expanding the first 2-3 terms and last 2-3 terms to confirm you did not misapply a rule, since the index range is small enough to verify quickly.
2. Riemann Sum Approximation ★★★☆☆ ⏱ 5 min
To construct any Riemann sum for a function $f(x)$ over the interval $[a,b]$ with $n$ equal-width subintervals, first calculate the width of each slice:
\Delta x = \frac{b-a}{n}
The right endpoint of the $i$-th subinterval is $x_i = a + i\Delta x$, the left endpoint is $x_{i-1} = a + (i-1)\Delta x$, and the midpoint is $a + (i - 0.5)\Delta x$. Four common types tested on the AP exam are:
- Left Riemann Sum (LRAM): Uses left endpoints for heights: $A \approx \sum_{i=1}^n f(x_{i-1})\Delta x$
- Right Riemann Sum (RRAM): Uses right endpoints for heights: $A \approx \sum_{i=1}^n f(x_i)\Delta x$
- Midpoint Riemann Sum (MRAM): Uses midpoints for heights: $A \approx \sum_{i=1}^n f\left(a + (i-0.5)\Delta x\right)\Delta x$
- Trapezoidal Riemann Sum: Averages left and right heights for equal widths: $A \approx \frac{\Delta x}{2}\left[f(x_0) + 2f(x_1) + ... + 2f(x_{n-1}) + f(x_n)\right]$
Exam tip: For table-based Riemann sum problems, always confirm if subintervals are equal width. If they are not, you cannot use the equal-width trapezoid or rectangle formula—you must calculate the area of each slice individually with its own width.
3. Definite Integral as the Limit of a Riemann Sum ★★★☆☆ ⏱ 3 min
The formal definition of the definite integral is:
\int_a^b f(x) dx = \lim_{n \to \infty} \sum_{i=1}^n f(x_i^*) \Delta x
where $\Delta x = \frac{b-a}{n}$, $x_i^*$ is any sample point in the $i$-th subinterval, and the limit exists for all continuous functions on $[a,b]$ (the only case you will see on the AP exam). The notation intentionally mirrors Riemann sum notation: the elongated $\int$ symbol is a historical "S" standing for summation, and $dx$ represents the infinitely small width of the subintervals.
Exam tip: When converting a Riemann sum to a definite integral, always confirm $a$ by checking the value of $x_i$ when $i=1$—common wrong answers come from incorrectly assuming $a=0$ by default, leading to a shifted interval.
4. AP Style Concept Check ★★★☆☆ ⏱ 2 min
Common Pitfalls
Why: You assumed $a=0$ by default instead of solving for $a$ from the expression for $x_i$.
Why: You memorized the equal-width formula and forgot it only applies when all $\Delta x$ are the same.
Why: You forgot to expand the binomial fully before splitting the summation.
Why: You confused left and right sum index conventions.
Why: You confused net area with total area.