- Home
- /
- Math
- /
- Introduction to Calculus
- /
- Sigma Notation
Sigma Notation
Also known as: summation notation, Σ notation
Grade 9-12
View on concept mapSigma notation uses the Greek letter Σ to express the sum of many terms compactly. Nearly every branch of mathematics uses summation notation: series in calculus, expected values in probability, dot products in linear algebra, and algorithms in computer science.
Definition
Sigma notation uses the Greek letter Σ to express the sum of many terms compactly. The expression \sum_{i=1}^{n} a_i means 'add up a_i for every integer i from 1 to n.' For example, \sum_{i=1}^{4} i^2 = 1 + 4 + 9 + 16 = 30.
💡 Intuition
Sigma notation is shorthand for 'add these all up.' The letter below \Sigma is a counter, the number below is where to start, the number above is where to stop, and the expression to the right tells you what to add each time.
🎯 Core Idea
Sigma notation is the language of summation. It turns long, repetitive sums into compact, precise expressions and is essential for stating formulas for series, statistics, and linear algebra.
Example
Formula
Notation
\sum_{i=1}^{n} a_i — the index variable i is a dummy variable (can be replaced by j, k, etc.).
🌟 Why It Matters
Nearly every branch of mathematics uses summation notation: series in calculus, expected values in probability, dot products in linear algebra, and algorithms in computer science. Fluency with \Sigma is a prerequisite for higher math.
💭 Hint When Stuck
Expand the sum by writing out the first three terms and the last term to see the pattern before simplifying.
Formal View
Related Concepts
🚧 Common Stuck Point
The index variable is a dummy—\sum_{i=1}^{n} i^2 and \sum_{k=1}^{n} k^2 are identical. The variable disappears after summation, just like a definite integral's variable.
⚠️ Common Mistakes
- Misreading the bounds: \sum_{i=0}^{n} has n+1 terms (0, 1, ..., n), while \sum_{i=1}^{n} has n terms.
- Pulling non-constant terms outside the sum: \sum_{i=1}^{n} c \cdot a_i = c \sum_{i=1}^{n} a_i only works if c does not depend on i.
- Confusing \sum_{i=1}^{n} (a_i + b_i) = \sum a_i + \sum b_i (TRUE) with \sum_{i=1}^{n} a_i \cdot b_i = (\sum a_i)(\sum b_i) (FALSE).
Go Deeper
Frequently Asked Questions
What is Sigma Notation in Math?
Sigma notation uses the Greek letter Σ to express the sum of many terms compactly. The expression \sum_{i=1}^{n} a_i means 'add up a_i for every integer i from 1 to n.' For example, \sum_{i=1}^{4} i^2 = 1 + 4 + 9 + 16 = 30.
What is the Sigma Notation formula?
When do you use Sigma Notation?
Expand the sum by writing out the first three terms and the last term to see the pattern before simplifying.
Next Steps
Cross-Subject Connections
How Sigma Notation Connects to Other Ideas
To understand sigma notation, you should first be comfortable with sequence and series. Once you have a solid grasp of sigma notation, you can move on to infinite geometric series and riemann sums.