Sigma Notation — Definition, Formula & Examples
Sigma Notation
Continued Sum
A notation using the Greek letter sigma (Σ) that allows a long sum to be written compactly.

See also
Key Formula
i=m∑nai=am+am+1+am+2+⋯+an
Where:
- Σ = The Greek capital letter sigma, meaning 'sum'
- i = The index variable (also called the counter or dummy variable)
- m = The lower limit — the starting value of the index
- n = The upper limit — the ending value of the index
- ai = The general term — a formula that depends on the index i
Worked Example
Problem: Evaluate the sum: ∑ from i = 1 to 5 of 2i.
Step 1: Write out the notation and identify the parts. The index i starts at 1 and ends at 5, and the general term is 2i.
i=1∑52i
Step 2: Substitute each value of i from 1 through 5 into the expression 2i to list every term.
2(1)+2(2)+2(3)+2(4)+2(5)
Step 3: Evaluate each term.
2+4+6+8+10
Step 4: Add all the terms together.
2+4+6+8+10=30
Answer: The sum equals 30.
Another Example
Problem: Write the sum 1 + 4 + 9 + 16 + 25 in sigma notation.
Step 1: Identify the pattern. The terms are 1², 2², 3², 4², 5², so the general term is i².
1=12,4=22,9=32,16=42,25=52
Step 2: Determine the lower and upper limits. The index i runs from 1 to 5.
Step 3: Write the sum in sigma notation.
i=1∑5i2
Answer: The sum 1 + 4 + 9 + 16 + 25 can be written as ∑ from i = 1 to 5 of i².
Frequently Asked Questions
How do you read sigma notation out loud?
You read ∑i=152i as 'the sum from i equals 1 to 5 of 2i.' Some people say 'the summation of 2i as i goes from 1 to 5.' Both are standard.
Does the index variable have to be the letter i?
No. You can use any letter — j, k, n, or anything else. The index variable is a 'dummy variable,' meaning the final value of the sum does not depend on which letter you choose. For example, ∑i=13i2 and ∑k=13k2 both equal 14.
Sigma Notation (Summation) vs. Pi Notation (Product)
Sigma notation ∑ represents repeated addition of terms, while pi notation ∏ represents repeated multiplication of terms. For example, ∑i=14i=1+2+3+4=10, whereas ∏i=14i=1×2×3×4=24. The structure — index, lower limit, upper limit, general term — is identical in both.
Why It Matters
Sigma notation is essential whenever you need to express large or even infinite sums without writing out every single term. It appears throughout algebra, statistics (for computing means and standard deviations), calculus (Riemann sums, Taylor series), and computer science (analyzing algorithm complexity). Mastering it lets you read and manipulate formulas far more efficiently than writing long expanded sums.
Common Mistakes
Mistake: Starting the index at the wrong value, typically assuming it always starts at 1.
Correction: Always check the lower limit. Sums can start at 0, 2, or any integer. For example, ∑i=03i includes the term where i = 0, giving 0 + 1 + 2 + 3 = 6, not 1 + 2 + 3 = 6.
Mistake: Forgetting to include the term at the upper limit.
Correction: The upper limit is included in the sum. In ∑i=14i, you must add the term when i = 4. The sum is 1 + 2 + 3 + 4 = 10, not 1 + 2 + 3 = 6.
Related Terms
- Series — A series is the sum of a sequence's terms
- Sum — The result of adding numbers together
- Sequence — An ordered list of terms that sigma notation sums
- Arithmetic Series — Common series type often written in sigma notation
- Geometric Series — Another common series expressed with sigma notation
- Greek Alphabet — Σ (sigma) is a letter from this alphabet
- Index — The counter variable beneath the sigma symbol
