I have the answer to the following question.
Solve the following recurrence equation with the given initial values:
$b_n = 4b_{n−1} − 4b_{n−2}$. Initial values: $b_0 = 3$, $b_1 = 10$.
I am looking for an explanation. The answer is: $3\cdot2^n + n2^{n+1}$. How did it get to this answer? Here is where I am at:
$b_n-4b_{n-1}+4b_{n-2}=0$.
$x^2-4x+4=0\implies x=2$.