A sequence is a list. A series is that list added up. The distinction matters because they ask different questions.
Step 1: Let's Learn
Read it, or press Listen and follow the words.
Sigma notation
The Greek capital sigma means add. The letter below is the counter, its starting value sits below and the last value sits above.
Arithmetic series
For n terms, Sₙ = n(a₁ + aₙ) ÷ 2. It is the number of terms times the average of the first and last.
Why that works
Pair the first with the last, the second with the second-last, and so on. Every pair has the same total.
Geometric series
For a common ratio r not equal to 1, Sₙ = a₁(1 − rⁿ) ÷ (1 − r).
Count the terms
A sum from k = 1 to 10 has 10 terms, but from k = 0 to 10 it has 11. Off-by-one errors live here.
A series is a sum, a sequence is a list
The sequence 2, 4, 6, 8 becomes the series 2 + 4 + 6 + 8 = 20. The distinction is genuine, and questions that ask for a term and questions that ask for a total need different formulas.
Sigma notation
The Σ symbol with an index below and a limit above means "add these up". It is compact and unambiguous, and it is the notation every later course uses. Expanding a small example by hand is the way to become comfortable with it.
The arithmetic sum formula
Sₙ = n(a₁ + aₙ)/2 — the number of terms times the average of the first and last. Pairing the first with the last, the second with the second-to-last, and so on gives the same total each time, which is where the formula comes from.
The geometric sum formula
Sₙ = a₁(1 − rⁿ)/(1 − r). It is derived by subtracting r times the sum from the sum, which collapses almost every term. That trick is worth seeing once, because the same idea appears repeatedly in later mathematics.
Step 2: Try It Yourself
Tap and try it out.
Step 3: Watch an Example
One step at a time.
Watch Rosa Add 1 Through 100
Rosa needs the sum of every whole number from 1 to 100.
- Step 1
This is an arithmetic series with 100 terms, first term 1 and last term 100.
Step 4: Your Turn
Practice makes it stick.
The Sum
Problem 1 of 2
What is the sum of 1 + 2 + 3 + ... + 20?
The Seats
Problem 2 of 2
A theatre has 12 seats in row 1, 15 in row 2, 18 in row 3, and 10 rows in total. How many seats are there?
Add Them Up
1 of 8
Sum of 1 + 2 + ... + 10?
2 of 8
Sum of 2 + 4 + 6 + 8 + 10?
3 of 8
A sum runs from k = 1 to k = 15. How many terms?
4 of 8
A sum runs from k = 0 to k = 15. How many terms?
5 of 8
Geometric series 2 + 4 + 8 + 16. What is the sum?
6 of 8
Geometric series 3 + 6 + 12 + 24 + 48. What is the sum?
7 of 8
Sort each item as a sequence or a series.
Tap something to move it.
- Empty
- Empty
8 of 8
Sum of 5 + 10 + 15 + ... + 50?
Step 5: Quick Check
Show what you know.
Question 1 of 2
What is the sum of 1 + 2 + ... + 50?
Question 2 of 2
What is the difference between a sequence and a series?
What You Learned
- A sequence is a list; a series is its total.
- Arithmetic sums use n(a₁ + aₙ) ÷ 2, the count times the average of the ends.
- Geometric sums use a₁(1 − rⁿ) ÷ (1 − r).