MathBored

Essential Math Primer
← Back to Primer Overview
R71 • Lesson 101 of 105

Sigma Notation & Finite Series

Summation notation and finding sums of arithmetic and geometric series

Reserve & Extensions • K-12

Prerequisites: H41, H42

Key Concepts

  • sigma notation
  • summation
  • series
  • arithmetic series
  • geometric series

Sigma Notation and Finite Series

Sigma notation (also called summation notation) is a compact way to write the sum of many terms following a pattern. Instead of writing out dozens of terms, we use the Greek letter sigma -- Σ -- to say "add all these up."

Reading Sigma Notation

Σk=1n ak = a1 + a2 + a3 + ... + an
ComponentNameRole
ΣSigmaMeans "sum"
kIndex variableCounter that changes each term
1Lower limitStarting value of k
nUpper limitEnding value of k
akGeneral termFormula evaluated for each k

Worked Example 1: Expanding Sigma Notation

Write out and evaluate: Σk=15 (2k + 1)

Substitute k = 1, 2, 3, 4, 5:

(2(1)+1) + (2(2)+1) + (2(3)+1) + (2(4)+1) + (2(5)+1)

= 3 + 5 + 7 + 9 + 11 = 35

Writing Series in Sigma Form

To convert a series into sigma notation, identify the pattern in terms of the index variable.

Worked Example 2: Creating Sigma Notation

Write in sigma notation: 4 + 8 + 12 + 16 + 20 + 24

Each term is 4k where k goes from 1 to 6.

Σk=16 4k

Alternatively: 4 · Σk=16 k (factoring out the constant).

Arithmetic Series Sum

An arithmetic series has a constant difference between consecutive terms. Its sum is:

Sn = n(a1 + an) / 2

where n is the number of terms, a1 is the first term, and an is the last term.

The famous special case: Σk=1n k = n(n+1)/2.

Geometric Series Sum

A geometric series has a constant ratio between consecutive terms. Its sum is:

Sn = a1(1 − rn) / (1 − r)     (r ≠ 1)

where a1 is the first term and r is the common ratio.

Worked Example 3: Applying Sum Formulas

Arithmetic: Find Σk=1100 k.

S = 100(101)/2 = 5050

(This is the sum Gauss famously computed as a child.)

Geometric: Find Σk=05 3(2k).

Here a1 = 3, r = 2, n = 6 terms (k = 0 through 5).

S = 3(1 − 26)/(1 − 2) = 3(1 − 64)/(−1) = 3(63) = 189

Check: 3 + 6 + 12 + 24 + 48 + 96 = 189.

Telescoping Series

In a telescoping series, most terms cancel when the sum is expanded, leaving only a few terms from the beginning and end.

Example: Σk=1n [1/k − 1/(k+1)] = (1 − 1/2) + (1/2 − 1/3) + ... + (1/n − 1/(n+1)) = 1 − 1/(n+1) = n/(n+1).

Common Mistake

Watch the lower limit carefully. Σk=04 has 5 terms (k = 0, 1, 2, 3, 4), not 4. The number of terms is (upper limit − lower limit + 1). Getting this wrong leads to incorrect sums.

Useful Sigma Properties

Σ(cak) = c · Σak (constants factor out). Σ(ak + bk) = Σak + Σbk (sums split). These let you break complex sums into simpler pieces.

Practice Problems

1. Expand and evaluate: Σk=14 k2

Solution

12 + 22 + 32 + 42 = 1 + 4 + 9 + 16 = 30.

2. Write in sigma notation: 5 + 10 + 15 + 20 + ... + 100.

Solution

Σk=120 5k. There are 20 terms (100/5 = 20). Sum = 20(5 + 100)/2 = 1050.

3. Find the sum: Σk=18 3 · 2k−1

Solution

Geometric series: a1 = 3, r = 2, n = 8. S = 3(1 − 256)/(1 − 2) = 3(255) = 765.

4. Evaluate the telescoping sum: Σk=150 [1/k − 1/(k+1)]

Solution

Most terms cancel. Sum = 1 − 1/51 = 50/51.

5. Find: Σk=1n (3k − 1). Express your answer in terms of n.

Solution

Split: 3Σk − Σ1 = 3 · n(n+1)/2 − n = 3n(n+1)/2 − n = n[3(n+1)/2 − 1] = n(3n+3−2)/2 = n(3n+1)/2.

Summary

Overview