where the Co-efficient of \(x^{n}\) Cannot be Zero i.e. \(A_n\neq0\)
A Single Root for any Polynomial Equation of Degree \(N\) (where \(N \geq 2\)) of 1 Variable can be found out using Newton-Raphson Method as follows
Calculate the Derivative Polynomial of the given Polynomial. For example if \(P(x)\) is the Polynomial Equation of Degree \(N\) of Variable \(x\), find it's Derivative Polynomial Equation \(P'(x)\) of Degree \(N-1\) .
Select any Arbitrary Value \(V\) as Initial Value for Variable \(x\) and repeatedly evaluate the following expression
\(V = V - {\Large \frac{P(V)}{P'(V)}}\)
where \(P(V)\) and \(P'(V)\) are the Values of the Polynomials \(P(x)\) and \(P'(x)\) respectively for \(x=V\),
till the Value of \(V\) Converges to a Root of the Polynomial \(P(x)\) upto the required precision.
Any Polynomial Equation of Degree \(N\) (where \(N \geq 2\)) in 1 Variable always has N Roots/Solutions that can be calculated recursively using the following steps
Find a Single Root \(R\) of the Polynomial Equation of Degree \(N\) using Newton-Raphson Method given above and Add it to the List of Roots.
If the Degree of Polynomial Equation is 2 (i.e. \(N = 2\)), then equation (1) can be written as
\(A_2x^2 + A_1x + A_0=0\) ...(2)
If \(R\) is One of the Calculated Roots of the Polynomial Equation (2) above, then it can be can be written as a Product of 2 Polynomials as follows
\((x-R)(B_1x + B_0) = 0\) ...(3)
\(B_1x^2 + (B_0 -B_1R)x + B_0 = 0\) ...(4)
Using equation (3) above, the Other Root can be calculated as
\(x= -{\Large \frac{B_0}{B_1}}\) ...(5)
Now, by comparing equations (2) and (4) above we get that
If the Degree of Polynomial Equation is Greater than 2 (i.e. \(N > 2\)),
and if \(R\) is One of it's Calculated Roots, the the Polynomial Equation of Degree \(N\) can be written as a Product of 2 Polynomials, a Polynomial of Degree 1 and a Polynomial of Degree \(N-1\) as follows
Since the Polynomial Equation with Degree \(N\) (as signfied by equation (1) above) and Polynomial Equation with Degree \(N-1\) (as signfied by equation (9) above) are same, therefore the values of Coefficients of Polynomial Equation with Degree \(N-1\) (i.e \(B_{n-1}, B_{n-1}, B_{n-3}, \cdots, B_{2}, B_{1}, B_{0}\))
can be found out in terms of Coefficients of Polynomial Equation with Degree \(N\) (i.e \(A_{n}, A_{n-1}, A_{n-2}, A_{n-3}, \cdots, A_{2}, A_{1}, A_{0}\)) as follows
Once the Coefficients of Polynomial Equation with Degree \(N-1\) (i.e \(B_{n-1}, B_{n-1}, B_{n-3}, \cdots, B_{2}, B_{1}, B_{0}\)) have been found, set
the Polynomial Equation of Degree \(N-1\) as given in equation (8) above as the New Polynomial Equation of Degree \(N\) and continue to Find Other Roots by going back to Step a.