I'm having a lot of problems with this one linear recurrence problem ...
First, verify that: $x^3 − 3x − 2 = (x^2 + 2x + 1)(x − 2). $
Then, solve the linear recurrence
f(0) = 0, f(1) = 1, f(2) = 7,
f(n) = 3f(n − 2) + 2f(n − 3).
I'm able to get this far but I don't know how to continue because of the cube roots.
$f(n) = x^n $
$x^n = 3x^{n-2} + 2x^{n-3} $
$x^3 = 3x + 2 $
$x^3 - 3x - 2 = 0 $
you wrote the answer: "verify that: $x^3 − 3x − 2 = (x^2 + 2x + 1)(x − 2)$".
solve that polynomials separately:
$ x-2=0$ and $x^2 + 2x + 1=0$.