Sigma Notation (Σ) - Summation Formula & Examples

Sigma Notation (Σ) - Summation Formula & Examples

TL;DR

Sigma notation uses the Greek capital letter Σ to write a long sum compactly — for example, ∑i=110i means 1+2+3+⋯+10=55. This article covers how to read sigma notation, the index conventions, the four core summation formulas, three worked examples at increasing difficulty, and the mistakes that quietly cost marks.

What is Sigma Notation?

Sigma notation is a compact way of writing a sum where the terms follow a pattern. The Greek capital letter Σ stands for "sum."

∑i=1nai=a1+a2+a3+⋯+an

Three pieces sit around the sigma:

So ∑i=14i2 reads as: start i at 1, end at 4, square each value of i, add them all up. That is 1+4+9+16=30.

Sigma notation is the difference between writing "1+2+3+⋯+100" and writing ∑i=1100i (where the rule is explicit).

The Sigma Symbol and Its Anatomy

The symbol Σ is the uppercase Greek letter sigma. Eighteenth-century Swiss mathematician Leonhard Euler introduced this convention in his 1755 textbook Institutiones Calculi Differentialis. Before Euler, sums of this kind were written in long-hand with ellipses — clumsy and ambiguous.

Piece Meaning
Σ The summation operator — "add up the following"
i The index of summation (also called the dummy variable)
i=1 (below) The lower bound — where the index starts
n (above) The upper bound — where the index ends
ai (to the right) The summand — the rule for each term

The choice of letter for the index (i, j, k, n — they all work) does not change the value of the sum. ∑i=15i=∑k=15k=15.

How Do You Read Sigma Notation? Three Worked Examples

Quick example

Quick. Evaluate ∑i=15i.

Substitute i=1,2,3,4,5 into the summand and add:

1+2+3+4+5=15

Final answer: 15.

A cross-check using the formula ∑i=1ni=n(n+1)/2: 5⋅6/2=15.

Walking through the wrong answer

Standard. Evaluate ∑i=25(2i+1).

Wrong path. A student who skipped the lower bound writes:

∑i=25(2i+1)=(2⋅1+1)+(2⋅2+1)+⋯+(2⋅5+1)

That answer is wrong. The lower bound says i starts at 2, not 1. The first term should be i=2, giving 2⋅2+1=5.

Correct path. Start i at 2:

∑i=25(2i+1)=(2⋅2+1)+(2⋅3+1)+(2⋅4+1)+(2⋅5+1)=5+7+9+11=32.

Final answer: 32.

Stretch example

Stretch. Evaluate ∑i=120i2.

Working term-by-term takes forever. Use the formula:

∑i=1ni2=n(n+1)(2n+1)/6.

Substitute n=20:

∑i=120i2=20⋅21⋅41/6=2870.

Final answer: 2870.

The Core Summation Formulas

Four formulas cover most school-level sigma problems.

Sum Formula
Sum of first n natural numbers ∑i=1ni=n(n+1)/2
Sum of first n squares ∑i=1ni2=n(n+1)(2n+1)/6
Sum of first n cubes ∑i=1ni3=[n(n+1)/2]^2
Constant sum ∑i=1nc=nc

Properties of Sigma Notation

Five properties that make sigma rearrangeable.

Why Does Sigma Notation Matter?

Sigma notation is not classroom decoration. It is the bridge between arithmetic and calculus.

Three Habits That Lose Marks

Mistake 1: Ignoring the lower bound.

Where it slips in: Students default to starting at i=1 even when the notation says otherwise.

Don't do this: ∑i=35i=1+2+3+4+5=15.

The correct way: ∑i=35i=3+4+5=12.

Mistake 2: Treating ∑(ai⋅bi) as (∑ai)⋅(∑bi).

Don't do this: ∑i=13(i⋅i)=(∑i=13i)⋅(∑i=13i)=6⋅6.

The correct way: ∑i=13i2=1+4+9=14.

Mistake 3: Forgetting that the dummy variable is local.

Don't do this: After writing S=∑i=1ni, students set i=n in the result.

The correct way: i does not survive the sum.

The Mathematician Who Shaped The Notation

Leonhard Euler (1707–1783, Switzerland). He standardised the use of Σ for summation in his 1755 textbook Institutiones Calculi Differentialis.

Conclusion

A practical next step

Three problems to practise:

  1. Evaluate ∑i=16(3i−1).

  2. Evaluate ∑k=115k.

  3. Evaluate ∑i=110i2 using the closed-form formula, then verify by summing the first ten squares directly.

Frequently Asked Questions

What is sigma notation?

Sigma notation uses the Greek capital letter Σ to write a long sum compactly.

What does the sigma symbol mean in math?

It means "sum up the following terms."

How do you write a sum in sigma notation?

Identify the pattern of the terms, the index, and its bounds.

What is the formula for the sum of the first n natural numbers?

∑i=1ni=n(n+1)/2.

How do you evaluate a sigma expression?

Either substitute each index value or use a closed-form summation formula.

Can the lower bound be zero or negative?

Yes, any integer value is allowed.

What is the difference between sigma and pi notation?

Σ adds terms together. The Greek capital Π multiplies terms together.