Mathwords logoMathwords

Sigma (Σ) — Definition, Formula & Examples

Sigma (Σ) is the uppercase Greek letter used in mathematics as a shorthand for summation — adding up a series of values according to a pattern or rule.

The notation i=mnai\displaystyle\sum_{i=m}^{n} a_i denotes the sum am+am+1++ana_m + a_{m+1} + \cdots + a_n, where ii is the index of summation, mm is the lower bound, nn is the upper bound, and aia_i is the general term being summed.

Key Formula

i=mnai=am+am+1++an\sum_{i=m}^{n} a_i = a_m + a_{m+1} + \cdots + a_n
Where:
  • Σ\Sigma = Summation symbol (uppercase sigma)
  • ii = Index of summation — the variable that changes each step
  • mm = Lower bound — the starting value of the index
  • nn = Upper bound — the ending value of the index
  • aia_i = General term — the expression evaluated at each index value

How It Works

Read sigma notation from the bottom up. The variable and starting value sit below the Σ (for example, i=1i = 1). The ending value sits above (for example, 55). The expression to the right of Σ tells you what to evaluate for each value of ii. You substitute each integer from the lower bound to the upper bound, then add all the results together.

Worked Example

Problem: Evaluate i=142i\displaystyle\sum_{i=1}^{4} 2i.
Step 1: Substitute each integer from 1 to 4 into the expression 2i2i.
2(1),  2(2),  2(3),  2(4)=2,  4,  6,  82(1),\; 2(2),\; 2(3),\; 2(4) = 2,\; 4,\; 6,\; 8
Step 2: Add all the results together.
2+4+6+8=202 + 4 + 6 + 8 = 20
Answer: i=142i=20\displaystyle\sum_{i=1}^{4} 2i = 20

Why It Matters

Sigma notation appears throughout statistics (for example, computing the mean as xˉ=1nxi\bar{x} = \frac{1}{n}\sum x_i), calculus (Riemann sums), and physics. Mastering it lets you read and write compact formulas instead of writing out long addition chains.

Common Mistakes

Mistake: Starting the index at the wrong value, such as always assuming it begins at 1.
Correction: Always check the lower bound beneath the Σ. It can be 0, 1, 2, or any integer specified by the problem.