Sigma Notation

Sigma notation provides a concise method for writing long sums of sequential algebraic terms. Summation notation is used heavily when defining Riemann sums and definite integrals in integral calculus.

Quick Reference

Sum Formula Closed Form Description
i = 1 n c n c Constant sum
i = 1 n i n ( n + 1 ) 2 Sum of first n positive integers
i = 1 n i 2 n ( n + 1 ) ( 2 n + 1 ) 6 Sum of first n squares
i = 1 n i 3 [ n ( n + 1 ) 2 ] 2 Sum of first n cubes

Definition of Sigma Notation

If a 1 , a 2 , , a n are real numbers, then their sum a 1 + a 2 + + a n can be written compactly using the capital Greek letter Σ (sigma):

i = 1 n a i = a 1 + a 2 + + a n

Here i is called the index of summation, 1 is the lower limit, and n is the upper limit.

Properties of Summation

For any real numbers a i , b i and constant c:

  1. i = 1 n c = n c
  2. i = 1 n c a i = c i = 1 n a i
  3. i = 1 n ( a i ± b i ) = i = 1 n a i ± i = 1 n b i

Formulas for Special Sums

\begin{aligned} \sum_{i=1}^n i &= 1 + 2 + 3 + \dots + n = \frac{n(n+1)}{2} \\[6pt] \sum_{i=1}^n i^2 &= 1^2 + 2^2 + 3^2 + \dots + n^2 = \frac{n(n+1)(2n+1)}{6} \\[6pt] \sum_{i=1}^n i^3 &= 1^3 + 2^3 + 3^3 + \dots + n^3 = \left[\frac{n(n+1)}{2}\right]^2 \end{aligned}