So I have to solve this recursion $b_n = b_{n-1} - b_{n-2}$ where $b_0=1$ and $b_1=8$. The characteristic equation is $x^2-x+1$. Then I calculate roots which are unfortunately complex numbers: $x_1=\frac{1}{2} - \frac{\sqrt{3}}{2}i$ and $x_2=\frac{1}{2} + \frac{\sqrt{3}}{2}i$. Then $b_n = A \cdot {x_1}^n + B \cdot {x_2}^n$. So I have: $$\begin{cases} 1=A+B\\ 8=A(\frac{1}{2} - \frac{\sqrt{3}}{2}i) + B(\frac{1}{2} + \frac{\sqrt{3}}{2}i)\end{cases}$$ Then after few transformations I have: $\frac{15}{\sqrt{3}}=(2B-1)i$.
But if I try to solve this equation I get $4B^2-4B+76=0$ which also yields negative delta... What now or what's wrong?
$$\frac{15}{\sqrt{3}}=(2B-1)i$$
then
$$-i\frac{15}{\sqrt{3}}=2B-1.$$
From $B$, draw $A$ and the rest follows.