- Home
- /
- Math
- /
- Introduction to Calculus
- /
- Sigma Notation
Sigma Notation
Also known as: summation notation, ฮฃ notation
Grade 9-12
View on concept mapA compact way to write the sum of many terms using the Greek letter \Sigma (sigma). 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
A compact way to write the sum of many terms using the Greek letter \Sigma (sigma). \sum_{i=m}^{n} a_i means add up a_i for every integer i from m to n.
๐ก 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?
A compact way to write the sum of many terms using the Greek letter \Sigma (sigma). \sum_{i=m}^{n} a_i means add up a_i for every integer i from m to n.
Why is Sigma Notation important?
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.
What do students usually get wrong about Sigma Notation?
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.
What should I learn before Sigma Notation?
Before studying Sigma Notation, you should understand: sequence, series.
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.