Sigma Notation- Sum Expression Guide and Examples
What Is Sigma Notation?
Sigma notation is a way to write long sums in a compact form. Instead of writing 1 + 2 + 3 + 4 + 5, you write ∑ᵢ₌₁⁵ i. That's it. The Greek letter sigma (Σ) tells you to add up whatever comes after it, following the rules specified below the symbol.
Mathematicians use this everywhere—in calculus, statistics, probability, and computer science. If you're studying any of these fields, you'll encounter it constantly. Better to learn it properly now than keep squinting at it later.
The Anatomy of Sigma Notation
Every sigma expression has three 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 (like i = 1).
- The ending value — written above the sigma (like i = 5 or simply 5).
The expression to the right of sigma tells you what to calculate for each value of the index. The index starts at the bottom value, increments by 1, and stops at the top value.
Reading Sigma Notation Out Loud
Take ∑ᵢ₌₁⁵ (2i + 1). Here's how to read it:
- "The sum from i equals 1 to 5 of (2i plus 1)"
To evaluate it, plug in each value of i and add the results:
- i = 1: 2(1) + 1 = 3
- i = 2: 2(2) + 1 = 5
- i = 3: 2(3) + 1 = 7
- i = 4: 2(4) + 1 = 9
- i = 5: 2(5) + 1 = 11
Sum: 3 + 5 + 7 + 9 + 11 = 35
Sigma Notation Examples
Example 1: Simple Arithmetic Sequence
∑ᵢ₌₁⁴ i²
Calculate i² for i = 1, 2, 3, 4:
- 1² = 1
- 2² = 4
- 3² = 9
- 4² = 16
Sum: 1 + 4 + 9 + 16 = 30
Example 2: Constants in the Summation
∑ᵢ₌₁³ 5
This means "add 5, four times." The index doesn't appear in the expression, but it still determines how many terms you have.
Sum: 5 + 5 + 5 = 15
Example 3: Two Summations Combined
∑ᵢ₌₁³ (i + i²)
You can split this into ∑ᵢ₌₁³ i + ∑ᵢ₌₁³ i²
First sum: 1 + 2 + 3 = 6
Second sum: 1 + 4 + 9 = 14
Total: 6 + 14 = 20
Key Properties of Summations
- Constant multiple rule: ∑c·aᵢ = c·∑aᵢ. Pull constants out of the sum.
- Sum of sums: ∑(aᵢ + bᵢ) = ∑aᵢ + ∑bᵢ. Add term-by-term.
- Index shift: You can change the index variable without changing the value, as long as you adjust the bounds accordingly.
Common Sigma Notation Mistakes
Students mess this up in predictable ways:
- Forgetting to expand the summation — always write out the terms if you're unsure.
- Wrong bounds — check whether it says n or n+1. One character changes everything.
- Treating the index as zero — the bottom bound tells you where to start, not whether the variable exists.
Where You'll See This
Sigma notation isn't just academic busywork. It shows up in real applications:
- Statistics: Sample variance formula uses ∑(xᵢ - x̄)²
- Finance: Compound interest calculations
- Computer science: Algorithm complexity analysis
- Physics: Calculating net force from multiple vectors
Quick Reference Table
| Notation | Expression | Result |
|---|---|---|
| ∑ᵢ₌₁⁵ i | 1 + 2 + 3 + 4 + 5 | 15 |
| ∑ᵢ₌₁⁵ i² | 1 + 4 + 9 + 16 + 25 | 55 |
| ∑ᵢ₌₀⁴ 2ᵢ | 1 + 2 + 4 + 8 + 16 | 31 |
| ∑ᵢ₌₁³ (i + 1) | 2 + 3 + 4 | 9 |
How To Evaluate Any Sigma Expression
Follow these steps in order:
- Identify the index variable (usually i, j, or k)
- Find the starting and ending values (bottom and top of sigma)
- Write out each term by substituting index values
- Calculate each term
- Add all terms together
Example walkthrough for ∑ᵢ₌₂⁴ (3i - 2):
- Index: i. Start: 2. End: 4.
- Terms: i=2 → 3(2)-2 = 4; i=3 → 3(3)-2 = 7; i=4 → 3(4)-2 = 10
- Add: 4 + 7 + 10 = 21
The Bottom Line
Sigma notation is just shorthand for addition. Once you understand the three components—index, start, end—you can evaluate any summation. The hard part isn't the math; it's getting comfortable with the notation itself. Practice expanding a few by hand and you'll stop dreading the symbol.