Consider a polynomial equation, for example \(x^3 + 2x^2 - 7x + 1 = 0\text{.}\) This is a scalar equation with one scalar variable, so it could be solved by the methods of previous chapters, including Newton’s method in one variable. But then we would get only one root (depending on initial position), not all three. Rewrite this equation as a system of three equations for three roots \(x_1, x_2, x_3\text{,}\) using the fact that the polynomial factors as \((x-x_1)(x-x_2)(x-x_3)\text{.}\)
Solution.
Expanding the product, we find
\begin{equation*}
x^3 + 2x^2 - 7x + 1 = (x-x_1)(x-x_2)(x-x_3) = x^3 + Ax^2 + Bx + C
\end{equation*}
where \(A = -(x_1+x_2+x_3)\text{,}\) \(B = x_1x_2 + x_1x_3 + x_2x_2\text{,}\) and \(C = -x_1x_2x_3\text{.}\) Equating the coefficients, we get the system
\begin{equation*}
\begin{cases} x_1+x_2+x_3 \amp = -2 \\
x_1x_2 + x_1x_3 + x_2x_3 \amp = -7 \\
x_1x_2x_3 \amp = -1
\end{cases}
\end{equation*}
If we can solve this system, the solution will consist of all three roots of the original equation.
