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

2 Answers
Nov 9, 2016

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

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_nan+2=an+1+2an

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 nn for each term.

a_1 = 4a1=4

a_2 = -3a2=3

For the third term:
3 = n + 2 3=n+2
3 - 2 = n + 2 - 232=n+22
1 = n1=n
So,
a_3 = a_(1 + 1) + 2a_1a3=a1+1+2a1
a_3 = a_2 + 2(4)a3=a2+2(4)
a_3 = -3 + 8a3=3+8
a_3 = 5a3=5

For the fourth term:
4 = n + 24=n+2
4 - 2 = n + 2 - 242=n+22
2 = n2=n
So,
a_4 = a_(2 + 1) + 2a_2a4=a2+1+2a2
a_4 = a_3 + 2(-3)a4=a3+2(3)
a_4 = 5 + -6a4=5+6
a_4 = -1a4=1

For the fifth term:
5 = n + 25=n+2
5 - 2 = n + 2 - 252=n+22
3 = n3=n
So,
a_5 = a_(3 + 1) + 2a_3a5=a3+1+2a3
a_5 = a_4 + 2(5)a5=a4+2(5)
a_5 = -1 + 10a5=1+10
a_5 = 9a5=9

The first five terms of the sequence are 4, -3. 5, -14,3.5,1 and 99.

Nov 9, 2016

4, -3, 5, -1, 94,3,5,1,9

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

Explanation:

Just follow the rules:

a_1 = 4a1=4

a_2 = -3a2=3

a_3 = a_2 + 2a_1 = -3 + 2(4) = 5a3=a2+2a1=3+2(4)=5

a_4 = a_3 + 2a_2 = 5+2(-3) = -1a4=a3+2a2=5+2(3)=1

a_5 = a_4 + 2a_3 = -1+2(5) = 9a5=a4+2a3=1+2(5)=9

color(white)()
Bonus

How about a general non-recursive formula for a_nan?

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

r^2 = r+2r2=r+2

That is:

0 = r^2-r-2 = (r-2)(r+1)0=r2r2=(r2)(r+1)

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

Thus we find that the geometric series:

b_n = 2^n" "bn=2n (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