🔢 Algebra 8: Sequences & Series

Understanding patterns and mathematical progressions

🎯 Learning Objectives

  • Define sequences and series, and distinguish between them
  • Identify arithmetic and geometric sequences
  • Find terms of sequences using explicit and recursive formulas
  • Calculate sums of arithmetic and geometric series
  • Understand sigma notation for series
  • Apply sequences and series to real-world problems

1. Understanding Sequences

📊 What is a Sequence?

A sequence is an ordered list of numbers that follow a specific pattern or rule.

Examples:

Arithmetic Sequence

2, 5, 8, 11, 14, ...

Pattern: Add 3 each time

a_n = 2 + 3(n-1)

Geometric Sequence

3, 6, 12, 24, 48, ...

Pattern: Multiply by 2 each time

a_n = 3 \times 2^{n-1}

Fibonacci Sequence

1, 1, 2, 3, 5, 8, 13, ...

Pattern: Each term is sum of previous two

a_n = a_{n-1} + a_{n-2}

🎮 Sequence Explorer

Sequence:

2. Arithmetic Sequences

➕ Arithmetic Sequences

Each term is found by adding a constant difference to the previous term.

General Formula:

a_n = a_1 + (n-1)d

  • a₁ = first term
  • d = common difference
  • n = term number
  • aₙ = nth term
📝 Arithmetic Sequence Practice

Find the 15th term of the sequence: 5, 9, 13, 17, ...

Common difference d =

15th term =

Which term of 7, 11, 15, 19, ... is 99?

3. Geometric Sequences

✖️ Geometric Sequences

Each term is found by multiplying the previous term by a constant ratio.

General Formula:

a_n = a_1 \times r^{n-1}

  • a₁ = first term
  • r = common ratio
  • n = term number
  • aₙ = nth term
📐 Geometric Sequence Practice

Find the 8th term of: 2, 6, 18, 54, ...

Common ratio r =

8th term =

In 4, 12, 36, 108, ... which term is 78732?

4. Series and Sigma Notation

∑ Series

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

Sigma Notation:

\sum_{i=1}^{n} a_i = a_1 + a_2 + ... + a_n

Read as: "Sum from i=1 to n of a_i"

🧮 Sum Formulas

Arithmetic Series Sum:

S_n = \frac{n}{2} \times (a_1 + a_n)

or

S_n = \frac{n}{2} \times (2a_1 + (n-1)d)

Geometric Series Sum:

S_n = a_1 \times \frac{1 - r^n}{1 - r}

(for r ≠ 1)

🧮 Series Sum Calculator

5. Real-World Applications

🌍 Sequences in Real Life

💰 Compound Interest

Investment growth: $1000 at 5% annual interest

A_n = 1000 \times (1.05)^n

🏃 Population Growth

Bacterial growth: doubles every hour

P_n = P_0 \times 2^n

🎯 Bouncing Ball

Height decreases by 20% each bounce

h_n = h_0 \times (0.8)^n

💼 Investment Problem

You invest $2000 at 6% annual interest, compounded yearly. How much will you have after 10 years?

A_n = 2000 \times (1.06)^n

Amount after 10 years: $

📄 algebra-sequences.html | 2025-12-26