How do you find the next two terms in the sequence 40, 10 20 50?
1 Answer
They could be
#a_n = abs(70-30n)#
but without more given information, they could actually be anything.
Explanation:
Given the sequence:
#40, 10, 20, 50#
Note that no finite initial sequence determines the following terms, unless you are given more information about the nature of the sequence (e.g. arithmetic, geometric, harmonic,...).
In the given example, there does not appear to be a simple pattern, apart from the fact that all of the terms are divisible by
It may be that minus signs have been omitted from the third and fourth terms, since:
#40, 10, -20, -50#
is an arithmetic progression.
Perhaps the minus signs have been deliberately removed by taking absolute values.
The
#t_n = a+d(n-1)#
where
For example, with
#t_n = 40-30(n-1) = 70-30n#
describing the sequence:
#40, 10, -20, -50#
So to describe the given example, we just need to take absolute values:
#a_n = abs(70-30n)#
If this is the intended sequence, then the next two terms are: