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:

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

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²:

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:

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:

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

How to Check Your Work

After calculating, do a quick sanity check:

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.