Sigma Notation- Summation Formula Guide
What Sigma Notation Actually Is
Sigma notation is just a shorthand way of writing long sums. Instead of writing 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10, you write one compact expression that says the same thing.
The Greek letter ฮฃ (sigma) means "sum." Everything else in the notation tells you what to add and how long to keep adding.
Mathematicians invented this because writing out 100 terms is stupid when one line communicates the same idea.
The Anatomy of Sigma Notation
Every sigma expression has four parts:
- The sigma symbol (ฮฃ) โ tells you this is a sum
- The index variable โ usually i, j, or k โ counts which term you're on
- The starting value โ where the count begins (written below the sigma)
- The ending value โ where the count stops (written above the sigma)
- The expression โ what to calculate for each value of the index
Here's what it looks like in practice:
โi=15 i = 1 + 2 + 3 + 4 + 5 = 15
The index i starts at 1, ends at 5. For each value of i, you add that value to the running total.
Common Index Starting Points
You'll see two conventions in the wild:
- Starting at 1: โi=1n โ most common in basic problems
- Starting at 0: โi=0n โ common in computer science and discrete math
Both are correct. Just check which one your textbook or instructor expects.
How To Evaluate Sigma Notation (Step by Step)
Here's a practical example. Evaluate:
โi=14 (2i + 1)
Step 1: Plug in each value of i from 1 to 4.
Step 2: Calculate each term:
- i = 1: 2(1) + 1 = 3
- i = 2: 2(2) + 1 = 5
- i = 3: 2(3) + 1 = 7
- i = 4: 2(4) + 1 = 9
Step 3: Add them up: 3 + 5 + 7 + 9 = 24
Done. That's the entire process.
Standard Summation Formulas You Need to Know
These come up constantly. Memorize them or know where to find them:
| Pattern | Formula | Example Result (n=5) |
|---|---|---|
| Sum of integers | โi=1n i = n(n+1)/2 | 5(6)/2 = 15 |
| Sum of squares | โi=1n iยฒ = n(n+1)(2n+1)/6 | 5(6)(11)/6 = 55 |
| Sum of cubes | โi=1n iยณ = [n(n+1)/2]ยฒ | [5(6)/2]ยฒ = 225 |
| Constant sum | โi=1n c = nc | 5 ร 3 = 15 |
Properties That Actually Help
Constant Multiple Rule
โi=1n cยทf(i) = c ยท โi=1n f(i)
You can pull constants out of the sum. Saves calculation time.
Sum of Sums Rule
โi=1n [f(i) + g(i)] = โi=1n f(i) + โi=1n g(i)
Break complicated sums into simpler pieces.
Index Shift Trick
Sometimes you need to change the starting index. Here's the formula:
โi=mn f(i) = โj=0n-m f(j + m)
This comes up when comparing sums with different starting points or when working with generating functions.
Examples That Cover the Basics
Example 1: โi=13 iยฒ
1ยฒ + 2ยฒ + 3ยฒ = 1 + 4 + 9 = 14
Example 2: โi=02 5
5 + 5 + 5 = 15 (adding a constant n+1 times)
Example 3: โi=14 (i - 1)
0 + 1 + 2 + 3 = 6
Example 4: โi=25 3i
3(2) + 3(3) + 3(4) + 3(5) = 6 + 9 + 12 + 15 = 42
Double Sigma (Nested Sums)
When you see something like โi=13 โj=12 (iยทj), evaluate the inner sum first, then the outer.
For each fixed i, compute โj=12 iยทj = i(1) + i(2) = 3i
Then sum over i: โi=13 3i = 3(1) + 3(2) + 3(3) = 18
Work inside out. Always.
Where Sigma Notation Shows Up
- Statistics: calculating means, variances, and sum of squares
- Calculus: Riemann sums and definite integral approximations
- Computer science: algorithm analysis and loop summation
- Physics: discrete system analysis and signal processing
- Finance: present value calculations and loan amortization
Common Mistakes to Avoid
- Forgetting parentheses: โ 2i + 1 is ambiguous. Write โ (2i + 1) to be clear.
- Wrong index bounds: Check whether your sum starts at 0 or 1. This changes everything.
- Confusing the index with the expression: The letter you use doesn't matter. i, j, k all work the same way.
- Expanding unnecessarily: Use the closed-form formulas for large n. Nobody wants to add 1000 terms by hand.
Practice Problems
Evaluate these to build speed:
- โi=16 i
- โi=14 (iยฒ - 1)
- โi=03 2i
- โi=15 โj=1i j
Check your work against the formulas above. If you got stuck on #4, work through the double sum section again.