How do you find the first five terms given #a_1=4#, #a_2=-3#, #a_(n+2)=a_(n+1)+2a_n#?

2 Answers
Nov 9, 2016

The first five terms of the sequence are #4, -3, 5, -1#, and #9#.

Explanation:

You already have the first two terms. The third term through the fifth term will be found using the given formula.

#a_(n + 2) = a_(n + 1) + 2a_n#

Notice that in order to find the value of each of these terms, we have to use the subscript on the left side of the formula to find the value of #n# for each term.

#a_1 = 4#

#a_2 = -3#

For the third term:
#3 = n + 2 #
#3 - 2 = n + 2 - 2#
#1 = n#
So,
#a_3 = a_(1 + 1) + 2a_1#
#a_3 = a_2 + 2(4)#
#a_3 = -3 + 8#
#a_3 = 5#

For the fourth term:
#4 = n + 2#
#4 - 2 = n + 2 - 2#
#2 = n#
So,
#a_4 = a_(2 + 1) + 2a_2#
#a_4 = a_3 + 2(-3)#
#a_4 = 5 + -6#
#a_4 = -1#

For the fifth term:
#5 = n + 2#
#5 - 2 = n + 2 - 2#
#3 = n#
So,
#a_5 = a_(3 + 1) + 2a_3#
#a_5 = a_4 + 2(5)#
#a_5 = -1 + 10#
#a_5 = 9#

The first five terms of the sequence are #4, -3. 5, -1# and #9#.

Nov 9, 2016

#4, -3, 5, -1, 9#

with general formula: #a_n = 1/6(2^n) - 11/3 (-1)^n#

Explanation:

Just follow the rules:

#a_1 = 4#

#a_2 = -3#

#a_3 = a_2 + 2a_1 = -3 + 2(4) = 5#

#a_4 = a_3 + 2a_2 = 5+2(-3) = -1#

#a_5 = a_4 + 2a_3 = -1+2(5) = 9#

#color(white)()#
Bonus

How about a general non-recursive formula for #a_n#?

Suppose the series is asymptotic to a geometric series with common ratio #r#. Then #r# must satisfy:

#r^2 = r+2#

That is:

#0 = r^2-r-2 = (r-2)(r+1)#

So #r = 2# or #r = -1#

Thus we find that the geometric series:

#b_n = 2^n" "# (#2, 4, 8, 16, 32, 64,...#)

#c_n = (-1)^n" "# (#-1, 1, -1, 1, -1, 1,...#)

both conform to the formula: #a_(n+2) = a_(n+1) + 2a_n#

Note that any linear combination of #b_n# and #c_n# will also satisfy the same rule.

So look for a general formula of the form:

#a_n = 2^nA + (-1)^nB#

Putting #n=1# we have:

#4 = a_1 = 2^1 A + (-1)^1 B = 2A-B#

Putting #n=2# we have:

#-3 = a_2 = 2^2 A + (-1)^2 B = 4A+B#

Adding these two equations, we find:

#1 = 6A#

So #A = 1/6# and #B=-3-4A = -3-2/3 = -11/3#

So:

#a_n = 1/6 (2^n) - 11/3 (-1)^n#