Let $a_n = -2a_{n-1 }+ 15a_{n-2 }$ with initial conditions $a_1 = 10 $ and $a_2 = 70$.
a)Write the first 5 terms of the recurrence relation.
b)Solve this recurrence relation.
c)Using the explicit formula you found in part b, evaluate $a_5$. You must show that you are using the equation from part b.
a.)$a_1 = 10$;
$a_2 = 70$;
$a_3 = -2(70) + 15(10) = -140 + 150 = 10$;
$a_4 = -2(10) + 15(70) = -20 + 1050 = 1030$;
$a_5 = -2(1030) + 15(10) = -2060 + 150 = -1910$;
b.) Using an Excel generator, I determined: root1 = -5, root2 = 3, u = 1, v = 5
I came up with the explicit formula: $a_n = 1 * (-5)n + 5 * (3)n$ , but this is where I get lost in the sauce. I tried solving for $a_5$ and came up with a number that I care not to share. So I must have gone wrong somewhere, but I just can't find it. Any help or guidance would be greatly appreciated.