Study Guide

Riemann sums, summation notation, and definite integral notation

AP Calculus ABΒ· AP Calculus AB CED β€” Integration and Accumulation of ChangeΒ· 14 min read

1. Summation Notation and Key Propertiesβ˜…β˜…β˜†β˜†β˜†β± 4 min

πŸ“˜ Definition

Summation (Sigma) Notation

βˆ‘i=kmai\sum_{i=k}^{m} a_i

A compact shorthand for writing the sum of a sequence of terms, where is the summation index, is the lower limit, is the upper limit, and is the -th term in the sequence.

  1. Constant multiple rule: for any constant independent of

  2. Sum rule:

  3. Sum of a constant:

  4. Common power sums: ,

These properties let you break complicated sums into simple solvable parts, which is necessary when working with approaching infinity, where adding individual terms is impossible.

πŸ“ Worked Example

Simplify to an expression with no remaining sigma notation.

  1. 1

    Expand the squared term inside the sum:

    (1+2in)2βˆ’1=1+4in+4i2n2βˆ’1=4in+4i2n2\left(1 + \frac{2i}{n}\right)^2 - 1 = 1 + \frac{4i}{n} + \frac{4i^2}{n^2} - 1 = \frac{4i}{n} + \frac{4i^2}{n^2}
  2. 2

    Pull the constant factor out of the sigma using the constant multiple rule:

    2nβˆ‘i=1n(4in+4i2n2)\frac{2}{n} \sum_{i=1}^{n} \left( \frac{4i}{n} + \frac{4i^2}{n^2} \right)
  3. 3

    Split the sum and pull out all remaining constants (terms without ):

    2n(4nβˆ‘i=1ni+4n2βˆ‘i=1ni2)\frac{2}{n} \left( \frac{4}{n} \sum_{i=1}^{n} i + \frac{4}{n^2} \sum_{i=1}^{n} i^2 \right)
  4. 4

    Substitute the power sum formulas and simplify:

    2n(4nβ‹…n(n+1)2+4n2β‹…n(n+1)(2n+1)6)=4(n+1)n+4(n+1)(2n+1)3n2\frac{2}{n} \left( \frac{4}{n} \cdot \frac{n(n+1)}{2} + \frac{4}{n^2} \cdot \frac{n(n+1)(2n+1)}{6} \right) = \frac{4(n+1)}{n} + \frac{4(n+1)(2n+1)}{3n^2}
  5. 5

    This is a fully simplified expression with no remaining sigma notation.

Exam tip:

If a question asks you to take the limit of a sigma expression, you never need to add every term from to manually. Always use summation properties to group constants and substitute power sums first.

2. Approximating Net Area with Riemann Sumsβ˜…β˜…β˜†β˜†β˜†β± 4 min

A Riemann sum approximates the net area between a continuous function and the x-axis over a closed interval . To construct a Riemann sum with equal-width subintervals: split into subintervals, pick a sample point in each subinterval, then calculate and sum the area of each rectangle.

πŸ“˜ Definition

Riemann Sum

βˆ‘i=1nf(xiβˆ—)Ξ”x\sum_{i=1}^n f(x_i^*) \Delta x

Approximation of net area over , where is the width of each subinterval, and is the sample point for the -th subinterval.

  • Left Riemann sum: is the left endpoint of each subinterval

  • Right Riemann sum: is the right endpoint of each subinterval

  • Midpoint Riemann sum: is the midpoint of each subinterval

A key property: Riemann sums calculate net area, which equals the area of the function above the x-axis minus the area of the function below the x-axis. Rectangles where contribute a negative value to the total sum.

πŸ“ Worked Example

Approximate the net area of over using equal subintervals and a right Riemann sum.

  1. 1

    Calculate the width of each subinterval:

    Ξ”x=4βˆ’02=2,subintervals: [0,2],[2,4]\Delta x = \frac{4 - 0}{2} = 2, \quad \text{subintervals: } [0, 2], [2, 4]
  2. 2

    For a right Riemann sum, sample points are the right endpoints of each subinterval: ,

  3. 3

    Evaluate at each sample point:

    f(2)=23βˆ’2(2)=4,f(4)=43βˆ’2(4)=56f(2) = 2^3 - 2(2) = 4, \quad f(4) = 4^3 - 2(4) = 56
  4. 4

    Calculate the total sum:

    Right Riemann Sum=4(2)+56(2)=120\text{Right Riemann Sum} = 4(2) + 56(2) = 120

Exam tip:

When given a table of values for (a common AP question), label all subinterval endpoints first before picking sample points, to avoid mixing up left and right endpoints.

3. Definite Integral Notation as a Limit of Riemann Sumsβ˜…β˜…β˜…β˜†β˜†β± 3 min

To get the exact net area under over , we take the limit of the Riemann sum as , which makes . This limit is defined as the definite integral of from to :

∫abf(x)dx=lim⁑nβ†’βˆžβˆ‘i=1nf(xiβˆ—)Ξ”x\int_{a}^{b} f(x) dx = \lim_{n \to \infty} \sum_{i=1}^{n} f(x_i^*) \Delta x

In this notation: is the integral sign (from "sum"), is the lower limit of integration, is the upper limit, is the integrand, and comes from , representing the infinitesimal width of each subinterval. The most common AP skill here is converting a limit of a Riemann sum to a definite integral, which follows 3 steps: (1) Identify , so ; (2) Match to find the lower bound ; (3) Calculate and write .

πŸ“ Worked Example

Write the definite integral equivalent to .

  1. 1

    Identify : the term multiplied by is , so , which means

  2. 2

    Match , so the lower bound

  3. 3

    Calculate the upper bound:

  4. 4

    The integrand , so the definite integral is:

    ∫37x3dx\int_{3}^{7} x^3 dx
βœ“ Quick check

Which of the following definite integrals is equivalent to ?

    • A)

    • B)

    • C)

    • D)

    Reveal answer
    2 β€”

    Correct: so , , , and the integrand is .

Exam tip:

Never assume the lower bound of integration is 0 just because the sum starts at . Many AP trap questions use non-zero lower bounds to test your ability to match to .

4. AP-Style Worked Practice Problemsβ˜…β˜…β˜…β˜†β˜†β± 3 min

πŸ“ Worked Example

Let over the interval . (a) Calculate the left Riemann sum for over with equal subintervals. Round your answer to 3 decimal places. (b) Is your answer from (a) an overestimate or an underestimate of the actual definite integral of from to ? Justify your answer. (c) Write the limit of the right Riemann sum for over as in definite integral notation.

  1. 1

    Part (a): Calculate subinterval width:

    Ξ”x=Ο€βˆ’04=Ο€4β‰ˆ0.7854\Delta x = \frac{\pi - 0}{4} = \frac{\pi}{4} \approx 0.7854
  2. 2

    Subinterval endpoints are . Left sample points are the left endpoints of each subinterval.

  3. 3

    Evaluate at each sample point and sum:

    (1+0.7071+0βˆ’0.7071)(Ο€4)=Ο€4β‰ˆ0.785(1 + 0.7071 + 0 - 0.7071)\left(\frac{\pi}{4}\right) = \frac{\pi}{4} \approx 0.785
  4. 4

    Part (b): is decreasing over , since for . For a decreasing function, left endpoints are the highest point on each subinterval, so all left rectangles extend above the curve. This means the left Riemann sum is an overestimate.

  5. 5

    Part (c): By definition, the limit of the right Riemann sum as is the definite integral:

    ∫0Ο€cos⁑(x)dx\int_{0}^{\pi} \cos(x) dx
πŸ“ Worked Example

A bakery tracks the rate of cookie production hundred cookies per hour over an 8-hour workday ( hours). Use a midpoint Riemann sum with equal subintervals to approximate the total number of cookies produced over the day. Include units in your answer.

  1. 1

    Calculate the width of each subinterval:

    Ξ”t=8βˆ’04=2 hours\Delta t = \frac{8 - 0}{4} = 2 \text{ hours}
  2. 2

    Subintervals are , so midpoints are .

  3. 3

    Evaluate at each midpoint: , , , (all in hundreds of cookies per hour).

  4. 4

    Calculate the total sum:

    (2.5+2.9+2.5+1.3)(2)=18.4 hundred cookies(2.5 + 2.9 + 2.5 + 1.3)(2) = 18.4 \text{ hundred cookies}
  5. 5

    Convert to total cookies: total cookies.

5. Common Pitfalls

Wrong move:

Converting to , claiming because

Why:

Confusing the coefficient of in with ; the term multiplied by outside the function is always

Correct move:

Always pull out the term with as a factor first to find , so , before solving for

Wrong move:

For an increasing function, claiming a left Riemann sum overestimates the area

Why:

Memorizing over/under estimates incorrectly instead of reasoning from the function's shape

Correct move:

Sketch a quick graph of the function over the interval to see if left/right rectangles extend above or below the curve, to get over/under estimates right

Wrong move:

Calculating a midpoint Riemann sum for over and using sample points at

Why:

Forgetting that subintervals are , so midpoints are at , not sequential integers starting at 1

Correct move:

After listing all subinterval endpoints, calculate the midpoint as the average of the two endpoints for each interval before evaluating

Wrong move:

Pulling a term with the summation index out of the sigma, e.g.

Why:

Confusing terms that depend on (which change for each term) with constants that do not depend on

Correct move:

Only pull terms that do not contain the summation index out of the sigma; leave all terms with inside the sum

Wrong move:

When asked for the total geometric area of a function that is negative over , writing the positive Riemann sum value directly from the calculation

Why:

Forgetting that Riemann sums calculate net area, not total geometric area

Correct move:

If asked for total area of a function below the x-axis, add a negative sign to the Riemann sum to get the positive total area

6. Quick Reference Cheatsheet

Category

Formula

Notes

Sum of a constant

is constant independent of

Constant multiple rule

Only pull constants without out of the sum

Equal subinterval width

For equal subintervals over

General Riemann Sum

Approximates net area; negative contributions for

Definite Integral as Limit

Exact net area of over

Left Riemann sample point

First sample point is always lower bound

Right Riemann sample point

Last sample point is always upper bound

Midpoint Riemann sample point

Typically more accurate than left/right sums

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2022 Β· MCQ

    Convert Riemann sum to integral

  • 2023 Β· FRQ

    Riemann sum approximation in context

  • 2021 Β· MCQ

    Identify correct Riemann sum setup

What's Next

This topic is the foundational building block for all of integration, so mastering it is non-negotiable for the rest of the AP Calculus AB course. Next, you will learn the Fundamental Theorem of Calculus, which connects Riemann sums and definite integral notation to antiderivatives, letting you calculate exact values of definite integrals without taking limits of infinite sums. Without understanding how Riemann sums become definite integrals, you will struggle to interpret what integrals mean in context, and will make frequent errors setting up integrals for area, accumulated change, and other application problems. This topic also feeds into all later integration topics, from substitution to applications of integration.