Theory
A sequence is a function whose domain is the set of positive integers.
Each input n produces a term an, and the terms are written in order.
A sequence may be finite or infinite.
Beginner Pattern (Use for Every Problem)
- Identify the starting value of n
- Substitute n=1,2,3,…
- Write the terms in order
Exercises
Exercise 1
Question
Write the first four terms of the infinite sequence
{3n1}n=1∞.Show solution ↓Hide solution ↑
Solution
Substitute n=1,2,3,4:
31,61,91,121.
Exercise 2
Question
Write the first four terms of the sequence
{sin(2nπ)−cos(2nπ)}n=0∞.Show solution ↓Hide solution ↑
Solution
Substitute n=0,1,2,3:
−1,1,1,−1.
Exercise 3
Question
Write the first ten terms of the Fibonacci sequence {Fn} defined by
Fn+1=Fn+Fn−1,n≥2,where F1=1 and F2=1.
Show solution ↓Hide solution ↑
Solution
Starting from F1=1, F2=1:
1,1,2,3,5,8,13,21,34,55.
Exercise 4
Question
Find the nth term (bracket notation) of the sequence
2,−2,2,−2,…Show solution ↓Hide solution ↑
Solution
The signs alternate and the magnitude is constant:
{2(−1)n+1}n=1∞.
Exercise 5
Question
Find the nth term (bracket notation) of the sequence
21,34,49,516,…Show solution ↓Hide solution ↑
Solution
The numerator is n2 and the denominator is n+1:
{n+1n2}n=1∞.