Sequences
A sequence is a list of numbers that follow a particular pattern, usually separated by commas.
Example:
a1,a2,a3,a4,…
Each number in the sequence is called a term.
Example 1
Find the next three terms in the following sequences:
- 5,8,11,14,17,…
Add 3 each time: Next terms: 20,23,26
- 3,7,6,10,9,…
Alternate adding 4 and subtracting 1: Next terms: 13,12,16
- 1,2,4,7,…
Add 1, then 2, then 3, etc.: Next terms: 11,16,22
- 2,9,20,35,…
Differences: +7, +11, +15 (increasing by 4): Next terms: 54,77,104
Example 2
Given the nth term of a sequence, find the first three terms:
Let an=n2−1
a1=12−1=0
a2=22−1=3
a3=32−1=8
Example 3
Given: kth term = k2+4
Find the sum of the first four terms:
a1=12+4=5
a2=22+4=8
a3=32+4=13
a4=42+4=20
Sum = 5+8+13+20=46
Example 4
Find the nth term of the sequence:
Let the sequence be 4,7,10,13,16,…
Common difference: d=3
Use the formula:
an=a1+(n−1)d
Example 5
Given the sequence: 6,4,2,0,−2,…
Common difference: d=−2
Geometric Progression (G.P.)
In a geometric sequence, each term is found by multiplying the previous term by a fixed number called the common ratio r.
Example:
2,4,8,16,32,…
Here, r=24=48=2
General Term of A.P.
If a1,a2,a3,…,an is an arithmetic sequence with common difference d, then:
an=a1+(n−1)d
Example 6
Sequence: 8,9.5,11,12.5,14,15.5,…
Common difference: d=1.5, First term: a1=8
an=8+(n−1)(1.5)=1.5n+6.5
Example 7
Given: a5=11, a8=26
From a5=a1+4d=11
From a8=a1+7d=26
Solve these equations to find a1 and d
Example 8
Given:
a8=a5+9
a10=10a2
Use the general formula to solve and find d, then determine a20
General Term of G.P.
If G1,G2,G3,…,Gn is a geometric sequence with common ratio r, then:
Gn=G1⋅rn−1
Example 9
2,6,18,54,…
r=3, G1=2
Gn=2⋅3n−1
4,−2,1,−0.5,0.25,…
r=−21, G1=4
Gn=4⋅(−21)n−1
Example 10
Find the 6th term of the geometric progression: 3, 6, 12, 24, ...
We are given:
First term, a=3
Common ratio, r=36=2
The general term of a G.P. is given by:
an=arn−1
So the 6th term is:
a6=3×26−1=3×25=3×32=96
Answer: 96
Example 11
Find the sum of the first 5 terms of the G.P.: 2, 4, 8, 16, 32
We are given:
First term, a=2
Common ratio, r=2
Number of terms, n=5
The sum of the first n terms in a G.P. is:
Sn=ar−1rn−1, for r=1
So,
S5=2×2−125−1=2×132−1=2×31=62
Answer: 62
Example 12
Find the 7th term of the G.P. whose first term is 5 and common ratio is 3.
We are given:
First term, a=5
Common ratio, r=3
Term number, n=7
Using the formula:
an=arn−1
Then,
a7=5×37−1=5×36=5×729=3645
Answer: 3645