Sequences and notation
When we list numbers in a specific order, we are forming a sequence. The list 2,4,6,8,10,… is a sequence of even numbers; so is 1,1,2,3,5,8,13,… (the Fibonacci sequence). What distinguishes a sequence from a set is order: the third entry is the third entry, and you cannot swap it with the fifth without changing the sequence.
Definitions
A sequence is a function whose domain is the set of natural numbers (or some initial segment {1,2,…,n}). Instead of writing f(1),f(2),f(3),… we write a1,a2,a3,… The number an is the n-th term or general term.
A finite sequence has finitely many terms: a1,a2,…,an. An infinite sequence continues indefinitely: a1,a2,a3,…
Three ways to specify a sequence:
- By formula: an=2n+1 gives 3,5,7,9,…
- By recursion (each term depends on previous ones): a1=1, an=an−1+2.
- By rule in words: "the n-th prime number".
A series is the sum of the terms of a sequence: a1+a2+a3+… When the sequence is finite, the series is a finite sum. When it is infinite, the series may or may not have a meaningful value , convergence is a Class XII topic.
Sigma notation
The Greek letter Σ ("sigma") condenses sums:
∑k=1nak=a1+a2+⋯+an.
The variable k (the index) takes every integer from 1 to n. The label below Σ is the starting index; the label above is the ending index. Index names are interchangeable: ∑k=1nak=∑j=1naj.
Some standard sums you should commit to memory immediately:
∑k=1n1=n,∑k=1nk=2n(n+1),∑k=1nk2=6n(n+1)(2n+1),∑k=1nk3=(2n(n+1))2.
Properties of Σ
Sigma is linear:
∑(cak)=c∑ak,∑(ak+bk)=∑ak+∑bk.
But not multiplicative: ∑(akbk)=(∑ak)(∑bk) in general.
Worked examples
Example 1. Write the first five terms of an=3n−2.
a1=1,a2=4,a3=7,a4=10,a5=13.
Example 2. Find the n-th term of 1,4,9,16,25,…
These are 12,22,32,… so an=n2.
Example 3. A sequence is defined by a1=2, an+1=2an+1. Find a4.
a1=2, a2=5, a3=11, a4=23.
Example 4. Compute ∑k=120(2k−1).
∑k=120(2k−1)=2∑k=120k−∑k=1201=2⋅220⋅21−20=420−20=400.
(This is the sum of the first 20 odd numbers, which equals 202=400.)
Example 5. Compute ∑k=110k(k+1).
∑k(k+1)=∑k2+∑k=610⋅11⋅21+210⋅11=385+55=440.
Try it yourself
- Find the first five terms of an=n2−n.
- Write the n-th term of 2,5,10,17,26,…
- A sequence: a1=1,a2=1,an=an−1+an−2. Find a7.
- Compute ∑k=115(3k+2).
- Compute ∑k=112k2.
- Write in sigma notation: 1+4+7+10+⋯+31.
- Write the n-th term of 21,32,43,54,…
- Find ∑k=1n(k2−k).
- A sequence has an=n+1n. Find a99.
- Compute ∑k=120(k2+2k).
- Determine if 7,10,13,16,… has a100=304. Verify.
- Write the recursion that produces 3,9,27,81,…
Pitfalls / Tricks
- "Sequence" and "series" are distinct: the first is a list, the second is a sum.
- A recursive definition needs initial values plus a recurrence.
- ∑(akbk)=(∑ak)(∑bk) , never distribute multiplication over sigma like that.
- Insight. When you see an unfamiliar series, first ask which formula gives the general term? Once you have ak, summation becomes algebra.