Calculate all complex roots of the polynomial: $8t^{4} -20t^{3} -10t^{2}-5t-3$.
So thanks to matlab, I can easily find out that the roots are $t = 3, -0.5, \pm 0.5i$. Unfortunately, achieving this answer by hand has been more difficult. Apparently, one valid method is to try to guess one of the roots and then use it to divide the polynomial. I was able to verify that this results in $(x-3)(x+\frac{1}{2})(8x^{2}+2)$. However, even with the rational roots test and sythentic division, the "guess" part of the process is a little unappealing to me.
I came across another method which seemed more promising: creating such a matrix $\left( \begin{array}{cccc} -\frac{5}{3} & -\frac{10}{3} & -\frac{20}{3} & \frac{8}{3} \\ 1 & 0 & 0 & 0 \\0 &1 &0 &0 \\ 0&0&1&0 \end{array} \right)$, determining the eigenvalues, and calculating the reciprocal of each eigenvalue. When I attempt to use this method, I get $\lambda^{4} + \frac{5}{3} \lambda^{3} + \frac{10}{3}\lambda^{2} + \frac{20}{3}\lambda -\frac{8}{3}$ (confirmed with matlab). However, it doesn't appear the situation has improved much, as I am facing the same problem of calculating roots of another polynomial with degree $4$, right? Should I expect to eventually solve for $\lambda$ if I apply the method once again (to the new polynomial)?
Generally are there obvious problems with my understanding of the two approaches above? Would anyone recommend(considering my approximate level) using another method instead?