Step-by-Step Guide- How to Find the Indicated Sum
What Is an Indicated Sum?
An indicated sum is simply a way of writing "add up all these terms" without listing every single number. Mathematicians use sigma notation (the Greek letter Σ) to express this compactly.
Instead of writing 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10, you write:
Σi=110 i = 55
That's it. The notation tells you exactly what to add and how many terms to include.
Breaking Down Sigma Notation
Every sigma expression has four parts you need to identify:
- The index variable — usually i, j, k, or n. This is the counter that changes value
- The starting value — written below the sigma (i = 1 means start counting from 1)
- The ending value — written above the sigma (i = 10 means stop at 10)
- The expression — what to calculate for each value of the index
Read Σi=37 (2i + 1) as: "Starting at i = 3 and ending at i = 7, calculate (2i + 1) for each value, then add them all together."
Step-by-Step: Finding the Indicated Sum
Method 1: Direct Calculation
This works when you have a small number of terms or need exact values.
Example: Find Σi=14 i²
Step 1: Identify your starting and ending values. Here, i goes from 1 to 4.
Step 2: Substitute each value of i into the expression i²:
- i = 1: 1² = 1
- i = 2: 2² = 4
- i = 3: 3² = 9
- i = 4: 4² = 16
Step 3: Add the results: 1 + 4 + 9 + 16 = 30
Method 2: Arithmetic Sequence Formula
Use this when you have a linear pattern like 3 + 6 + 9 + 12...
Formula: Sn = n(a₁ + an) / 2
Where:
- n = number of terms
- a₁ = first term
- an = last term
Example: Find the sum of 5 + 10 + 15 + 20 + 25
n = 5, a₁ = 5, an = 25
S5 = 5(5 + 25) / 2 = 5(30) / 2 = 150 / 2 = 75
Method 3: Geometric Sequence Formula
Use this when terms multiply by a constant ratio, like 2 + 4 + 8 + 16...
Formula: Sn = a₁(1 - rn) / (1 - r) for r ≠ 1
Where:
- a₁ = first term
- r = common ratio
- n = number of terms
Example: Find the sum of 3 + 6 + 12 + 24
a₁ = 3, r = 2, n = 4
S₄ = 3(1 - 2⁴) / (1 - 2) = 3(1 - 16) / (-1) = 3(-15) / (-1) = 45
Quick Reference Table
| Sequence Type | Pattern | Formula |
|---|---|---|
| Arithmetic | Adds same number each time | n(a₁ + an) / 2 |
| Geometric | Multiplies by same number each time | a₁(1 - rn) / (1 - r) |
| First n integers | 1, 2, 3, 4... | n(n + 1) / 2 |
| First n squares | 1, 4, 9, 16... | n(n + 1)(2n + 1) / 6 |
| First n cubes | 1, 8, 27, 64... | [n(n + 1) / 2]² |
Getting Started: Practice Problems
Problem 1: Find Σi=15 (2i - 1)
Calculate each term: (2(1)-1) + (2(2)-1) + (2(3)-1) + (2(4)-1) + (2(5)-1)
= 1 + 3 + 5 + 7 + 9 = 25
Problem 2: Find the sum of 1 + 2 + 4 + 8 + 16 + 32
This is geometric with a₁ = 1, r = 2, n = 6
S₆ = 1(1 - 2⁶) / (1 - 2) = 1(1 - 64) / (-1) = 63
Problem 3: Find Σi=1100 i
Don't calculate 100 terms. Use the formula: 100(101) / 2 = 5050
Common Mistakes That Kill Your Answer
- Misreading the upper limit — "n = 10" does not mean add 10 terms. It means stop when the index reaches 10. If starting at 6, that's only 5 terms.
- Forgetting the index changes — Each term uses a different value of the index. Don't just plug in one number.
- Using the wrong formula — Arithmetic and geometric sequences need different formulas. Know which one you're dealing with.
- Calculation errors in exponents — 2⁵ = 32, not 10. Double-check your powers.
- Skipping parentheses — (i + 1)² is not the same as i² + 1.
How to Check Your Work
After calculating, do a quick sanity check:
- Is your answer in a reasonable range? If summing positive numbers, the result must be positive.
- Count your terms. If you have 8 terms averaging around 5, expect a sum near 40.
- For arithmetic sequences, the average of the first and last term times the number of terms should match your answer.
Finding the indicated sum comes down to three things: reading the notation correctly, picking the right method, and executing the arithmetic without errors. No shortcuts around the work.