In an attempt to find the $n^{th}$ Fibonacci number by Binet's formula, the derivation of this formula starts by using the quadratic equation
$$x^2-x-1 = 0$$
If we try to find roots of this equation using quadratic roots formula, we find that we have 2 roots:
$$ \sigma = \frac{1+\sqrt 5}{2}, \gamma= \frac{1-\sqrt 5}{2}$$
Then, we notice that:
\begin{align} x^2 = x+1 \\ x^3 = 2x+1 \\ \vdots\\ x^6 = 8x+5 \\ \vdots\\ \end{align}
Question: why do we start with $x^2-x-1 = 0$ specifically and not with others? Is it because it just fulfill the need?