x
The Problem:
Find the next three terms in this sequence
14, 24, 36, 50, 66, ..., ..., ...,
-/|\-
Solution:
Solution
As with any sequence we are given first let's look to see if it is not one we know. It's not one I know, so let's find the first difference between adjacent terms.
1 | 2 | 3 | 4 | 5 | ||||||
term |
14 | 24 | 36 | 50 | 66 | |||||
First difference
|
10 | 12 | 14 | 16 |
This first difference is an arithmetic sequence with a common difference of 2, which enables us to work out the next three first differences:
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | |||||||||
term |
14 | 24 | 36 | 50 | 66 | ? | ? | ? | ||||||||
First difference |
10 | 12 | 14 | 16 | 18 | 20 | 22 |
Adding these first differences in term to the previous term in the sequence we get:
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | |||||||||
term | 14 | 24 | 36 | 50 | 66 | 84 | 104 | 126 | ||||||||
First difference |
10 | 12 | 14 | 16 | 18 | 20 | 22 |
So the sequence is 14, 24, 36, 50, 66, 84, 104, 126,…
We can go further and find any term in the sequence. The first difference is an arithmetic sequence with a common difference of 2, implying that the original sequence is a quadratic sequence of the form , where a is the common difference divided by 2, ∴ .
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | |||||||||
term |
14 | 24 | 36 | 50 | 66 | 84 | 104 | 126 | ||||||||
First difference |
10 | 12 | 14 | 16 | 18 | 20 | 22 | |||||||||
1 | 4 | 9 | 16 | 25 | 36 | 49 | 64 | |||||||||
13 | 20 | 27 | 34 | 41 | 48 | 55 | 62 |
But , so the last line is an arithmetic sequence with common difference and zeroth term . Therefore, the term of the sequence is given by .
-oOo-