Arithmetic and Geometric Series

Finding sums of sequences

Series and Summation

What is a Series?

A series is the sum of the terms in a sequence.

Example: 2+4+6+8+10=302 + 4 + 6 + 8 + 10 = 30

Arithmetic Series

Sum of an arithmetic sequence: Sn=n(a1+an)2S_n = \frac{n(a_1 + a_n)}{2}

or

Sn=n[2a1+(n1)d]2S_n = \frac{n[2a_1 + (n-1)d]}{2}

where nn = number of terms

Geometric Series

Sum of a geometric sequence: Sn=a11rn1rS_n = a_1 \cdot \frac{1 - r^n}{1 - r}

(when r1r \neq 1)

Infinite Geometric Series

If r<1|r| < 1, the infinite series has a sum: S=a11rS = \frac{a_1}{1 - r}

Example: 1+12+14+18+...1 + \frac{1}{2} + \frac{1}{4} + \frac{1}{8} + ...

S=1112=112=2S = \frac{1}{1 - \frac{1}{2}} = \frac{1}{\frac{1}{2}} = 2

Sigma Notation

i=1nai=a1+a2+a3+...+an\sum_{i=1}^{n} a_i = a_1 + a_2 + a_3 + ... + a_n

Read as: "the sum from i=1i = 1 to nn of aia_i"

📚 Practice Problems

1Problem 1easy

Question:

Find the sum: 2+5+8+11+142 + 5 + 8 + 11 + 14

💡 Show Solution

This is an arithmetic series with:

  • a1=2a_1 = 2
  • an=14a_n = 14
  • n=5n = 5 terms

Use the formula: Sn=n(a1+an)2S_n = \frac{n(a_1 + a_n)}{2}

S5=5(2+14)2=5(16)2=802=40S_5 = \frac{5(2 + 14)}{2} = \frac{5(16)}{2} = \frac{80}{2} = 40

Answer: 4040

2Problem 2medium

Question:

Find the sum of the first 6 terms: 3,6,12,24,...3, 6, 12, 24, ...

💡 Show Solution

This is a geometric series with:

  • a1=3a_1 = 3
  • r=2r = 2
  • n=6n = 6

Use the formula: Sn=a11rn1rS_n = a_1 \cdot \frac{1 - r^n}{1 - r}

S6=312612S_6 = 3 \cdot \frac{1 - 2^6}{1 - 2} =31641= 3 \cdot \frac{1 - 64}{-1} =3631= 3 \cdot \frac{-63}{-1} =363=189= 3 \cdot 63 = 189

Answer: 189189

3Problem 3hard

Question:

Find the sum of the infinite series: 8+4+2+1+...8 + 4 + 2 + 1 + ...

💡 Show Solution

This is an infinite geometric series with:

  • a1=8a_1 = 8
  • r=48=12r = \frac{4}{8} = \frac{1}{2}

Since r=12<1|r| = \frac{1}{2} < 1, the series converges.

Use the formula: S=a11rS = \frac{a_1}{1 - r}

S=8112S = \frac{8}{1 - \frac{1}{2}} =812= \frac{8}{\frac{1}{2}} =16= 16

Answer: 1616