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:

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:

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:

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

Common Mistakes to Avoid

Practice Problems

Evaluate these to build speed:

  1. โˆ‘i=16 i
  2. โˆ‘i=14 (iยฒ - 1)
  3. โˆ‘i=03 2i
  4. โˆ‘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.