Polynomial root (zero of a polynomial)
A polynomial root (or zero) is a value of the variable that makes the polynomial evaluate to zero. Covers definition, multiplicity, complex roots, factorization, common methods to find roots, and examples.
A polynomial root, also called a zero, is any number r for which a polynomial f(x) satisfies f(r) = 0. Roots are the solutions of the equation f(x)=0 and they govern important algebraic and geometric properties of the polynomial. For real polynomials, roots can be real or occur as complex conjugate pairs; over the complex numbers every nonconstant polynomial of degree n has exactly n roots when multiplicities are counted, a statement known as the Fundamental Theorem of Algebra.
Definition and basic properties
Formally, r is a root of f(x) if (x - r) divides f(x) in the polynomial ring. If (x - r)^m divides f(x) but (x - r)^{m+1} does not, r is said to have multiplicity m. A root of multiplicity 1 is called simple. For real functions, a simple real root usually corresponds to the graph crossing the x-axis, while an even multiplicity often corresponds to the graph touching the axis without crossing.
Example
Consider f(x) = 2x^2 + 10x - 28. One can factor this quadratic as 2(x - 2)(x + 7). From the factor form it is clear that x = 2 and x = -7 are roots because each factor equals zero at those values. Evaluating the polynomial directly gives f(2) = 2*2^2 + 10*2 - 28 = 0 and f(-7) = 2*(-7)^2 + 10*(-7) - 28 = 0, confirming both as zeros.
How roots relate to algebraic structure
Roots correspond to linear factors: every root r yields a factor (x - r). For polynomials with coefficients in the reals, nonreal roots come in conjugate pairs, so their linear factors combine into irreducible quadratic factors with real coefficients. The multiplicity of a root is reflected in derivatives: if r is a root of multiplicity m then f(r)=f'(r)=...=f^{(m-1)}(r)=0 but f^{(m)}(r)\u00a0\u2260\u00a00.
Methods for finding roots
Finding exact roots depends on degree and coefficients. Common approaches include:
- Factorization for low-degree or specially structured polynomials.
- Quadratic formula for degree two; cubic and quartic formulas exist but are rarely used in practice.
- Rational Root Theorem and synthetic division to test candidate rational roots.
- Numerical methods such as Newton–Raphson, bisection, secant, and Durand–Kerner for approximating real or complex roots.
Other tools include Descartes' rule of signs (to bound the number of positive real roots), bounds on root magnitudes, and Sturm sequences for counting distinct real roots in an interval.
Importance and applications
Roots of polynomials appear throughout mathematics and applied science: solving algebraic equations, characteristic polynomials in linear algebra (eigenvalues), control theory stability, interpolation and approximation, and root-finding algorithms in numerical analysis. Understanding the multiplicity and location of roots informs both theoretical results and practical computations.
Related articles
Author
AlegsaOnline.com Polynomial root (zero of a polynomial) Leandro Alegsa
URL: https://en.alegsaonline.com/art/77871