Lesson 5 / 5 · 12 min read
Sequences and Series
Arithmetic, geometric, and the sums that close-form themselves.
Sequences
A sequence is an ordered list of numbers: a1,a2,a3,…. Algebra 2 focuses on two types.
Arithmetic sequence
Each term differs from the previous by a constant d (the common difference).
an=a1+(n−1)d
Example. 3,7,11,15,… has a1=3 and d=4. So a10=3+9⋅4=39.
Geometric sequence
Each term is the previous times a constant r (the common ratio).
an=a1⋅rn−1
Example. 2,6,18,54,… has a1=2 and r=3. So a8=2⋅37=4374.
Series — summing a sequence
Arithmetic series
Sn=2n(a1+an)
Read it: the average of the first and last term, times the number of terms.
Example. Sum of 1+2+3+⋯+100. n=100, a1=1, a100=100:
S100=2100(1+100)=50⋅101=5050
Geometric series (finite)
Sn=a1⋅1−r1−rn,r=1
Example. Sum of 2+6+18+54+162. a1=2, r=3, n=5:
S5=2⋅1−31−243=2⋅−2−242=242
Infinite geometric series
If ∣r∣<1, the infinite series converges:
S∞=1−ra1
If ∣r∣≥1, it doesn't converge.
Example. 1+21+41+81+⋯, with a1=1, r=1/2:
S∞=1−1/21=2
Recursive vs. explicit
Explicit: plug n in directly. an=3+4(n−1).
Recursive: define each term from the previous. a1=3, an=an−1+4.
Both describe the same sequence; pick whichever is convenient.
Key takeaways
- Arithmetic: constant difference d; an=a1+(n−1)d.
- Geometric: constant ratio r; an=a1rn−1.
- Arithmetic sum: average of endpoints times count of terms.
- Geometric sum: a11−r1−rn; the infinite version converges only when ∣r∣<1.