I am given the following polynomial:
$$f(x) = x^5 + 7x^4 + 19x^3 + 26x^2 + ax + b = 0$$
with $a, b \in \mathbb{R}$.
I have to find $a$ and $b$ such that the given polynomial has a triple root.
I know that if a polynomial has a triple root $\alpha$ then we have:
$$f(\alpha) = 0$$
$$f'(\alpha) = 0$$
$$f''(\alpha) = 0$$
And in previous exercises (where the degree of the polynomial was $4$, not $5$) I could use $f''(\alpha) = 0$ to find $2$ $\alpha$'s and find $a$ and $b$ for each $\alpha$. I could do that because the second derivative of a $5$th degree polynomial is a quadratic so I could find the $\alpha$'s. Here, it's different. We have:
$$f(x) = x^5 + 7x^4 + 19x^3 + 26x^2 + ax + b$$
$$f'(x) = 5x^4+28x^3+57x^2+52x+a$$
$$f''(x) = 20x^3+84x^2+114x+52$$
And when I try to solve $f''(\alpha) = 0$ I get:
$$20 \alpha ^ 3 + 84 \alpha^2 + 114 \alpha + 52 = 0$$
And I don't know how to find the $\alpha$'s. So, what approach should I use to solve this exercise?