Please help with solving the recurrences to get closed form formulas for $a_n$, $b_n$ and $c_n$. Be sure to clearly label the characteristic equation, the roots of the characteristic equation, the general solution and the specific solution.
$a_n=a_{n-1}+2a_{n-2}$ for $n\geq 2$, $a_0=2$ ,$a_1=-5$
$b_n=8b_{n-1}+16b_{n-2}$ for $n\geq 2$, $b_0=-3$, $b_1=-4$
$c_n=3c_{n-1}+6c_{n-2}-24c_{n-3}+24c_{n-4}$ for $n\geq 3$ $c_0=-2$, $c_1=10$, $c_2=-10$, $c_3=54$
This topic is a little hard for me. Do I just plug in $a_0$ and $a_1$ into the equation? Any tips will be helpful. Thank you.
Rewrite the first equation as $a_n - 2 a_{n-1} = -\left( a_{n-1} - 2 a_{n-2} \right)$. This has the form $g_n = -g_{n-1}$ with the general solution $g_n = (-1)^{n-1} g_1$. Therefore $$ a_n - 2 a_{n-1} = (-1)^{n-1} (a_1 - 2 a_0) = 9 (-1)^n $$ Let $b_n = 2^{-n} a_n$. Multiplying the above recurrence equation with $2^{-n}$ we get $$\begin{eqnarray} b_n - b_{n-1} = 9 (-2)^{-n} \implies b_n &=& b_0 + 9 \sum_{k=1}^n (-2)^{-k} \\ &=& b_0 + 9 \frac{-1/2}{1-(-1/2)} (1 - (-2)^{-n}) \\ &=& -1 + 3 (-1)^n 2^{-n} \end{eqnarray} $$ Hence $$ a_n = 2^n b_n = 3 (-1)^n - 2^n $$
Generally, one solves such recurrence equations using trick with linearity. Suppose a particular solution to your recurrence has a form $a_n = q^n$. Substituting this into the recurrence you find $q^{n+2} = q^{n+1} + 2 q^{n}$, implying that $q$ must satisfy $q^2 = q + 2$ which has two roots, $q=2$ and $q=-1$. Since the recurrence equation is linear, general solution is a linear combination of these two solutions: $$ a_n = c_1 (-1)^n + c_2 2^{n} $$ Initial conditions determine $c_1$ and $c_2$.
You are now well equipped to tackle the remaining two problems by yourself.