Express $2x^5+13x^4+50x^3+82x^2+56x+13$ as a product of five linear factors. The roots of the polynomial may be real or complex.
I had to employ the technique of synthetic division iteratively. I'd like to know if I'm doing this correctly. \begin{align} 2x^5+13x^4+50x^3+82x^2+56x+13 &= (x+1)(2x^4+11x^3+39x^2+43x+13) \\ &= (x+1)^2(3x^3+9x^2+30x+13) \\ &=(x+1)^2\left(x+ \frac 12\right)(2x^2+8x+26) \\ &=(x+1)^2(2x+1)(x^2+4x+13) \\ &=(x+1)^2\left(2x+1\right)(x+(2+3i))(x+(2-3i)) \end{align}
I like using Newton's method for finding roots in situations like these, so I made an Excel spread sheet.
I can enter some random numbers in cell A1 to generate other roots, and the spread sheet will recalculate automatically. By using the values 0 and -2, I found the roots -0.5 and -1.
Unfortunately, this method doesn't identify multiplicities, but that's okay, because I can now reduce $f$ to a cubic by dividing by $(x+1)(x+\frac{1}{2})$ to find $g$ (e.g. $f(x)=(x+1)(x+\frac{1}{2})g(x)$). Once I've found $g'$, I can change columns B and C to reflext the simpler function to find my final Real (and hopefully Rational) factor. I can then use the quadratic formula on whatever is left over.