Skip to main content
  1. Grade 12 Mathematics/
  2. Sequences and Series/

Sigma Notation

Table of Contents

What is Sigma Notation?
#

Sigma ($\Sigma$) is shorthand for addition. Instead of writing out every single term and adding them, we use one compact symbol that says: “start here, end there, and use this rule to generate each term.”

$$\sum_{k=1}^{5} (2k + 1) \quad = \quad 3 + 5 + 7 + 9 + 11$$

The left side and right side mean exactly the same thing. Sigma is just a more efficient way to write it — especially when there are hundreds of terms.


1. Decoding the Symbol — Every Part Explained
#

$$\sum_{k=1}^{n} T_k$$
PartNameWhat it does
$\Sigma$Sigma (capital Greek S for “Sum”)Tells you to add
$k = 1$Lower limit (starting value)The first value of $k$ you plug in
$n$Upper limit (stopping value)The last value of $k$ you plug in
$T_k$Generator formulaThe rule that produces each term
$k$Index variable (counter)Counts through integers from bottom to top

The index $k$ is just a counter — it takes every integer value from the lower limit to the upper limit, one at a time. For each value of $k$, you compute the generator formula and add the result.

Reading It Step by Step
#

$$\sum_{k=2}^{5} (3k)$$
Step$k$ valuePlug into $3k$Term
1$k = 2$$3(2)$$6$
2$k = 3$$3(3)$$9$
3$k = 4$$3(4)$$12$
4$k = 5$$3(5)$$15$
$$\sum_{k=2}^{5} (3k) = 6 + 9 + 12 + 15 = 42$$

The index variable doesn’t have to be $k$. You’ll also see $\sum_{i=1}^{n}$, $\sum_{j=0}^{n}$, $\sum_{r=1}^{n}$, etc. The letter doesn’t matter — only the starting value, stopping value, and generator formula matter.


2. Counting the Number of Terms
#

This is where most marks are lost. The number of terms is not simply the upper limit.

$$\boxed{\text{Number of terms} = \text{Upper limit} - \text{Lower limit} + 1}$$

Why the $+1$?
#

Think of it concretely. If you count from $3$ to $7$, how many numbers are there?

$$3, \;4, \;5, \;6, \;7 \quad \Rightarrow \quad 5 \text{ numbers}$$

But $7 - 3 = 4$, not $5$. The $+1$ corrects for the fact that both endpoints are included.

Sigma expressionLowerUpperNumber of terms
$\displaystyle\sum_{k=1}^{10}$$1$$10$$10 - 1 + 1 = 10$
$\displaystyle\sum_{k=3}^{8}$$3$$8$$8 - 3 + 1 = 6$
$\displaystyle\sum_{k=0}^{5}$$0$$5$$5 - 0 + 1 = 6$
$\displaystyle\sum_{k=5}^{20}$$5$$20$$20 - 5 + 1 = 16$

Watch out for $k = 0$: When the sum starts at $k = 0$, there are $n + 1$ terms (not $n$). For example, $\sum_{k=0}^{4}$ has $4 - 0 + 1 = 5$ terms.


3. Expanding Sigma — From Compact to Full Form
#

The most fundamental skill: write out what the sigma actually says.

Worked Example 1 — Basic Expansion
#

Expand and evaluate $\displaystyle\sum_{k=1}^{4} (k^2 + 1)$

$k$$k^2 + 1$
$1$$1 + 1 = 2$
$2$$4 + 1 = 5$
$3$$9 + 1 = 10$
$4$$16 + 1 = 17$
$$\sum_{k=1}^{4} (k^2 + 1) = 2 + 5 + 10 + 17 = \boxed{34}$$

Worked Example 2 — Expansion Starting at $k = 0$
#

Expand $\displaystyle\sum_{k=0}^{3} 2^k$

$k$$2^k$
$0$$2^0 = 1$
$1$$2^1 = 2$
$2$$2^2 = 4$
$3$$2^3 = 8$
$$\sum_{k=0}^{3} 2^k = 1 + 2 + 4 + 8 = \boxed{15}$$

Notice: this is a geometric series with $a = 1$, $r = 2$, and $n = 4$ terms.


4. Connecting Sigma to Sum Formulas
#

This is the crucial link. Once you expand the first few terms, you can identify the type of series and use the appropriate formula instead of adding every term by hand.

The Strategy
#

  1. Write out the first 3 terms (plug in the first 3 values of $k$)
  2. Identify the pattern: Is it arithmetic (constant difference)? Geometric (constant ratio)? Neither?
  3. Count the number of terms using $\text{Upper} - \text{Lower} + 1$
  4. Apply the correct sum formula

Worked Example 3 — Arithmetic Series in Sigma
#

Evaluate $\displaystyle\sum_{k=1}^{50} (3k + 2)$

Step 1 — Write out the first few terms:

$k$$3k + 2$
$1$$5$
$2$$8$
$3$$11$

Step 2 — Identify the pattern:

$5;\;8;\;11;\;\dots$ → differences are $3;\;3;\;\dots$ → arithmetic with $a = 5$, $d = 3$

Step 3 — Count terms:

$n = 50 - 1 + 1 = 50$

Step 4 — Apply the formula:

$$S_{50} = \frac{50}{2}[2(5) + (50-1)(3)] = 25[10 + 147] = 25(157) = \boxed{3\,925}$$

Worked Example 4 — Geometric Series in Sigma
#

Evaluate $\displaystyle\sum_{k=1}^{8} 3 \cdot 2^{k-1}$

Step 1 — Write out the first few terms:

$k$$3 \cdot 2^{k-1}$
$1$$3 \cdot 2^0 = 3$
$2$$3 \cdot 2^1 = 6$
$3$$3 \cdot 2^2 = 12$

Step 2 — Identify the pattern:

$3;\;6;\;12;\;\dots$ → ratios are $2;\;2;\;\dots$ → geometric with $a = 3$, $r = 2$

Step 3 — Count terms:

$n = 8 - 1 + 1 = 8$

Step 4 — Apply the formula:

$$S_8 = \frac{3(2^8 - 1)}{2 - 1} = 3(256 - 1) = 3(255) = \boxed{765}$$

Worked Example 5 — Geometric Series Starting at $k = 0$
#

Evaluate $\displaystyle\sum_{k=0}^{9} \left(\frac{1}{2}\right)^k$

First few terms: $1;\;\frac{1}{2};\;\frac{1}{4};\;\dots$ → geometric with $a = 1$, $r = \frac{1}{2}$

Number of terms: $9 - 0 + 1 = 10$

$$S_{10} = \frac{1\left(1 - \left(\frac{1}{2}\right)^{10}\right)}{1 - \frac{1}{2}} = \frac{1 - \frac{1}{1024}}{\frac{1}{2}} = 2\left(\frac{1023}{1024}\right) = \boxed{\frac{1023}{512}}$$

5. Writing a Series in Sigma Notation
#

Sometimes the question gives you a series and asks you to express it in sigma notation. This is the reverse skill.

The Strategy
#

  1. Identify the pattern/formula that generates each term
  2. Determine what values the index takes (starting and stopping)
  3. Write it in sigma form

Worked Example 6 — Converting to Sigma
#

Write $5 + 8 + 11 + 14 + \dots + 302$ in sigma notation.

Step 1 — Identify the pattern:

Arithmetic with $a = 5$, $d = 3$. The general term: $T_k = 5 + (k-1)(3) = 3k + 2$

Step 2 — Find the upper limit:

$3k + 2 = 302 \;\Rightarrow\; 3k = 300 \;\Rightarrow\; k = 100$

Step 3 — Write in sigma:

$$\boxed{\sum_{k=1}^{100} (3k + 2)}$$

Check: When $k = 1$: $3(1) + 2 = 5\;\checkmark$. When $k = 100$: $3(100) + 2 = 302\;\checkmark$


Worked Example 7 — Converting Geometric to Sigma
#

Write $4 + 12 + 36 + 108 + \dots + 8\,748$ in sigma notation.

Step 1 — Identify the pattern:

Geometric with $a = 4$, $r = 3$. The general term: $T_k = 4 \cdot 3^{k-1}$

Step 2 — Find the upper limit:

$4 \cdot 3^{k-1} = 8\,748 \;\Rightarrow\; 3^{k-1} = 2\,187 = 3^7 \;\Rightarrow\; k - 1 = 7 \;\Rightarrow\; k = 8$

Step 3 — Write in sigma:

$$\boxed{\sum_{k=1}^{8} 4 \cdot 3^{k-1}}$$

6. Splitting and Combining Sigma Sums
#

Sigma notation follows rules that let you break apart or combine sums. These are essential for harder exam questions.

Rule 1: Splitting a Sum at a Point
#

$$\sum_{k=1}^{n} T_k = \sum_{k=1}^{m} T_k + \sum_{k=m+1}^{n} T_k$$

This just says: the sum from 1 to $n$ equals the sum from 1 to $m$ plus the sum from $(m+1)$ to $n$. You’re splitting the total into two parts.

Rule 2: Constants Factor Out
#

$$\sum_{k=1}^{n} c \cdot T_k = c \cdot \sum_{k=1}^{n} T_k$$

If every term is multiplied by the same constant, you can pull it outside.

Rule 3: Sums Split Over Addition
#

$$\sum_{k=1}^{n} (T_k + U_k) = \sum_{k=1}^{n} T_k + \sum_{k=1}^{n} U_k$$

Rule 4: Sum of a Constant
#

$$\sum_{k=1}^{n} c = nc$$

Adding the constant $c$ a total of $n$ times gives $nc$.

Worked Example 8 — Using the Rules
#

Given that $\displaystyle\sum_{k=1}^{20} k = 210$ and $\displaystyle\sum_{k=1}^{20} k^2 = 2\,870$, evaluate $\displaystyle\sum_{k=1}^{20} (3k^2 - 2k + 5)$.

Split and factor:

$$\sum_{k=1}^{20} (3k^2 - 2k + 5) = 3\sum_{k=1}^{20} k^2 - 2\sum_{k=1}^{20} k + \sum_{k=1}^{20} 5$$$$= 3(2\,870) - 2(210) + 5(20)$$$$= 8\,610 - 420 + 100 = \boxed{8\,290}$$

7. The Subtraction Technique with Sigma
#

Sometimes a sigma sum doesn’t start at $k = 1$. You can handle this by subtraction:

$$\sum_{k=5}^{20} T_k = \sum_{k=1}^{20} T_k - \sum_{k=1}^{4} T_k = S_{20} - S_4$$

This uses the same logic as the subtraction technique from arithmetic: the full sum minus the “early” part leaves just the terms you want.

Worked Example 9 — Sum Starting at a Higher Index
#

Evaluate $\displaystyle\sum_{k=11}^{30} (2k - 1)$

Method 1 — Direct approach (find new $a$, $d$, $n$):

First term (at $k = 11$): $2(11) - 1 = 21$

Last term (at $k = 30$): $2(30) - 1 = 59$

Number of terms: $30 - 11 + 1 = 20$

$$S = \frac{20}{2}(21 + 59) = 10(80) = \boxed{800}$$

Method 2 — Subtraction:

$$\sum_{k=11}^{30} (2k-1) = \sum_{k=1}^{30} (2k-1) - \sum_{k=1}^{10} (2k-1)$$

$\sum_{k=1}^{30}$: $a = 1$, $d = 2$, $n = 30$. $S_{30} = \frac{30}{2}[2(1) + 29(2)] = 15(60) = 900$

$\sum_{k=1}^{10}$: $a = 1$, $d = 2$, $n = 10$. $S_{10} = \frac{10}{2}[2(1) + 9(2)] = 5(20) = 100$

$$900 - 100 = \boxed{800}\;\checkmark$$

8. Sigma with Sum to Infinity
#

When the upper limit is $\infty$, you need a convergent geometric series:

$$\sum_{k=1}^{\infty} ar^{k-1} = \frac{a}{1 - r}, \quad |r| < 1$$

Worked Example 10 — Infinite Sigma
#

Evaluate $\displaystyle\sum_{k=1}^{\infty} 5\left(\frac{1}{3}\right)^k$

First few terms: $\frac{5}{3};\;\frac{5}{9};\;\frac{5}{27};\;\dots$

This is geometric with $a = \frac{5}{3}$ and $r = \frac{1}{3}$.

Since $|r| = \frac{1}{3} < 1$:

$$S_\infty = \frac{\frac{5}{3}}{1 - \frac{1}{3}} = \frac{\frac{5}{3}}{\frac{2}{3}} = \frac{5}{3} \times \frac{3}{2} = \boxed{\frac{5}{2}}$$

🚨 Common Mistakes
#

MistakeWhy it’s wrongFix
Assuming $n$ = upper limit$\sum_{k=3}^{10}$ has $10 - 3 + 1 = 8$ terms, not $10$Always use $\text{Upper} - \text{Lower} + 1$
Forgetting $k = 0$ adds an extra term$\sum_{k=0}^{n}$ has $n + 1$ termsCount carefully from zero
Using $S_n$ formula with wrong $a$When $k$ doesn’t start at $1$, the first term of the series isn’t $T_1$Plug in the actual starting $k$ to find $a$
Not identifying the series typeJumping to a formula without checking arithmetic vs geometricWrite out the first 3 terms and check differences/ratios
Forgetting to check $\lvert r \rvert < 1$ for $\sum^{\infty}$Infinite sums only exist for convergent geometric seriesState the convergence condition explicitly

🎥 Video Lessons
#

Sigma Notation 1
#

Sigma Notation 2
#


💡 Pro Tips for Exams
#

1. The “First Three Terms” Rule
#

Before touching any formula, always write out the first three terms by plugging in the first three values of $k$. This instantly reveals whether the series is arithmetic, geometric, or something else.

Why? Because sigma notation can look intimidating, but once you see the actual numbers, the pattern becomes obvious. Three terms is enough to compute two differences (or two ratios) to identify the type.

2. Watch the Starting Index
#

If the sum starts at $k = 0$, the first term is $T_0$, not $T_1$. This changes your $a$ value. If it starts at $k = 3$, your first term comes from plugging in $k = 3$.

Example: $\sum_{k=0}^{n} 2^k$ has first term $2^0 = 1$ (not $2$), $r = 2$, and $n + 1$ terms.

3. Sigma Is Just a Notation — Not a New Topic
#

Sigma notation doesn’t introduce any new mathematics. It’s simply a compact way to write series you already know:

Sigma formWhat it really is
$\sum_{k=1}^{n} [a + (k-1)d]$Arithmetic series with first term $a$, difference $d$
$\sum_{k=1}^{n} ar^{k-1}$Geometric series with first term $a$, ratio $r$
$\sum_{k=1}^{n} c$Just the constant $c$ added $n$ times $= nc$

4. Useful Standard Sums
#

These come up frequently and are worth knowing:

SumFormula
$\displaystyle\sum_{k=1}^{n} k = 1 + 2 + 3 + \dots + n$$\dfrac{n(n+1)}{2}$
$\displaystyle\sum_{k=1}^{n} 1 = \underbrace{1 + 1 + \dots + 1}_{n \text{ times}}$$n$

⏮️ Geometric | 🏠 Back to Sequences & Series | ⏭️ Mixed Sequences

Related

Geometric Sequences & Series

Master the logic of scaling — common ratio, general term, sum formulas with proofs, sum to infinity, and convergence with deep explanations and fully worked examples.

Quadratic Sequences

Master the logic of changing speed — first and second differences, the general term derivation, and solving for n with fully worked examples.