Skip to content
Surf Wiki
Save to docs
general/polynomials

From Surf Wiki (app.surf) — the open knowledge base

Geometrical properties of polynomial roots

Geometry of the location of polynomial roots


Geometry of the location of polynomial roots

In mathematics, a univariate polynomial of degree n with real or complex coefficients has n complex roots (if counted with their multiplicities). They form a multiset of n points in the complex plane, whose geometry can be deduced from the degree and the coefficients of the polynomial.

Some of these geometrical properties are related to a single polynomial, such as upper bounds on the absolute values of the roots, which define a disk containing all roots, or lower bounds on the distance between two roots. Such bounds are widely used for root-finding algorithms for polynomials, either for tuning them, or for computing their computational complexity.

Some other properties are probabilistic, such as the expected number of real roots of a random polynomial of degree n with real coefficients, which is less than 1+\frac 2\pi \ln (n) for n sufficiently large.

Notation

In this article, a polynomial is always denoted : p(x)=a_0 + a_1 x + \cdots + a_n x^n, where a_0, \dots, a_n are real or complex numbers and a_n \neq 0; thus n is the degree of the polynomial.

Continuous dependence on coefficients

The n roots of a polynomial of degree n depend continuously on the coefficients. For simple roots, this results immediately from the implicit function theorem. This is true also for multiple roots, but some care is needed for the proof.

A small change of coefficients may induce a dramatic change of the roots, including the change of a real root into a complex root with a rather large imaginary part (see Wilkinson's polynomial). A consequence is that, for classical numeric root-finding algorithms, the problem of approximating the roots given the coefficients can be ill-conditioned for many inputs.

Conjugation

The complex conjugate root theorem states that if the coefficients of a polynomial are real, then the non-real roots appear in pairs of the form (a + ib, aib).

It follows that the roots of a polynomial with real coefficients are mirror-symmetric with respect to the real axis.

This can be extended to algebraic conjugation: the roots of a polynomial with rational coefficients are conjugate (that is, invariant) under the action of the Galois group of the polynomial. However, this symmetry can rarely be interpreted geometrically.

Bounds on all roots

Upper bounds on the absolute values of polynomial roots are widely used for root-finding algorithms, either for limiting the regions where roots should be searched, or for the computation of the computational complexity of these algorithms.

Many such bounds have been given, and the sharper one depends generally on the specific sequence of coefficient that are considered. Most bounds are greater or equal to one, and are thus not sharp for a polynomial which have only roots of absolute values lower than one. However, such polynomials are very rare, as shown below.

Any upper bound on the absolute values of roots provides a corresponding lower bound. In fact, if a_n\ne 0, and U is an upper bound of the absolute values of the roots of : a_0 + a_1 x + \cdots + a_n x^n, then 1/U is a lower bound of the absolute values of the roots of : a_n + a_{n-1} x + \cdots + a_0 x^n, since the roots of either polynomial are the multiplicative inverses of the roots of the other. Therefore, in the remainder of the article lower bounds will not be given explicitly.

Lagrange's and Cauchy's bounds

Lagrange and Cauchy were the first to provide upper bounds on all complex roots. Lagrange's bound is :\max\left{1,\sum_{i=0}^{n-1} \left|\frac{a_i}{a_n}\right|\right}, and Cauchy's bound is :1+\max\left{ \left|\frac{a_{n-1}}{a_n}\right|, \left|\frac{a_{n-2}}{a_n}\right|, \ldots, \left|\frac{a_0}{a_n}\right|\right}

Lagrange's bound is sharper (smaller) than Cauchy's bound only when 1 is larger than the sum of all \left|\frac{a_i}{a_n}\right| but the largest. This is relatively rare in practice, and explains why Cauchy's bound is more widely used than Lagrange's.

Both bounds result from the Gershgorin circle theorem applied to the companion matrix of the polynomial and its transpose. They can also be proved by elementary methods.

If z is a root of the polynomial, and z ≥ 1 one has :|a_n||z^n| = \left|\sum_{i=0}^{n-1}a_iz^i\right| \le \sum_{i=0}^{n-1}|a_iz^i| \le \sum_{i=0}^{n-1}|a_i||z|^{n-1}.

Dividing by |a_n||z|^{n-1}, one gets :|z|\le \sum_{i=0}^{n-1}\frac{|a_i|}{|a_n|}, which is Lagrange's bound when there is at least one root of absolute value larger than 1. Otherwise, 1 is a bound on the roots, and is not larger than Lagrange's bound.

Similarly, for Cauchy's bound, one has, if z ≥ 1, :|a_n||z^n| = \left|\sum_{i=0}^{n-1}a_iz^i\right| \le \sum_{i=0}^{n-1}|a_iz^i| \le \max |a_i|\sum_{i=0}^{n-1}|z|^i = \frac{|z|^n-1}{|z|-1}\max |a_i| \le \frac{|z|^n}{|z|-1}\max |a_i|. Thus : |a_n|(|z|-1) \le \max |a_i|. Solving in z, one gets Cauchy's bound if there is a root of absolute value larger than 1. Otherwise the bound is also correct, as Cauchy's bound is larger than 1.

These bounds are not invariant by scaling. That is, the roots of the polynomial p(sx) are the quotient by s of the root of p, and the bounds given for the roots of p(sx) are not the quotient by s of the bounds of p. Thus, one may get sharper bounds by minimizing over possible scalings. This gives \min_{s\in \mathbb R_+}\left(\max\left{ s,\sum_{i=0}^{n-1} \left|\frac{a_i}{a_n}\right|s^{i-n+1}\right}\right), and \min_{s\in \mathbb R_+}\left(s+\max_{0\le i\le n-1}\left(\left|\frac{a_i}{a_n}\right| s^{i-n+1}\right)\right), for Lagrange's and Cauchy's bounds respectively.

Another bound, originally given by Lagrange, but attributed to Zassenhaus by Donald Knuth, is
2\max\left{ \left|\frac{a_{n-1}}{a_n}\right|, \left|\frac{a_{n-2}}{a_{n}}\right|^{1/2}, \ldots, \left|\frac{a_0}{a_n}\right|^{1/n}\right}. This bound is invariant by scaling.

Let A be the largest \left|\frac{a_i}{a_n}\right|^\frac 1{n-i} for {{math|0 ≤ i :\frac {|a_{i}|}{|a_n|} \le A^{n-i} for 0\le i If z is a root of p, one has :-a_nz^n=\sum_{i=0}^{n-1}a_i z^i, and thus, after dividing by a_n, :\begin{align} |z|^n&\le\sum_{i=0}^{n-1}A^{n-i}|z|^i\ &=A\frac{|z|^{n}-A^{n}}{|z|-A}. \end{align} As we want to prove z ≤ 2A, we may suppose that z A (otherwise there is nothing to prove). Thus :|z|^n \le A\frac{|z|^n}{|z|-A}, which gives the result, since |z|A.

Lagrange improved this latter bound into the sum of the two largest values (possibly equal) in the sequence \left[ \left|\frac{a_{n-1}}{a_n}\right|, \left|\frac{a_{n-2}}{a_{n}}\right|^{1/2}, \ldots, \left|\frac{a_0}{a_n}\right|^{1/n}\right].

Lagrange also provided the bound \sum_i \left|\frac{a_i}{a_{i+1}}\right|, where a_i denotes the ith nonzero coefficient when the terms of the polynomials are sorted by increasing degrees.

Using Hölder's inequality

Hölder's inequality allows the extension of Lagrange's and Cauchy's bounds to every h-norm. The h-norm of a sequence :s=(a_0, \ldots, a_n) is :|s|h = \left(\sum{i=0}^n |a_i|^h\right)^{1/h}, for any real number h ≥ 1, and :|s|\infty = \textstyle{\max{i=0}^n} |a_i|.

If \frac 1h+ \frac 1k=1, with 1 ≤ h, k ≤ ∞, and , an upper bound on the absolute values of the roots of p is \frac 1{|a_n|}\left|(|a_n|, \left|(|a_{n-1}|, \ldots, |a_0| \right)|_h\right)|_k.

For and , one gets respectively Cauchy's and Lagrange's bounds.

For , one has the bound \frac 1{|a_n|}\sqrt{|a_n|^2+|a_{n-1}|^2+ \cdots +|a_0|^2 }. This is not only a bound of the absolute values of the roots, but also a bound of the product of their absolute values larger than 1; see , below.

Let z be a root of the polynomial

:p(x)=a_nx^n+a_{n-1}x^{n-1}+\cdots+a_1x +a_0.

Setting :A=\left(\frac{|a_{n-1}|}{|a_n|},\ldots, \frac{|a_1|}{|a_n|},\frac{|a_0|}{|a_n|}\right), we have to prove that every root z of p satisfies :z\le \left|(1, \left|A\right|_h\right)|_k.

If |z| \le 1, the inequality is true; so, one may suppose |z| 1 for the remainder of the proof.

Writing the equation as :-z^n=\frac{a_{n-1}}{a_n}z^{n-1}+\cdots+\frac{a_1}{a_n}z+\frac{a_0}{a_n}, Hölder's inequality implies :|z|^n\leq |A|_h \cdot\left |(z^{n-1},\ldots,z, 1) \right |_k.

If , this is :|z|^n\leq|A|_1\max \left {|z|^{n-1},\ldots,|z|,1 \right } =|A|_1|z|^{n-1}. Thus :|z|\leq \max{1,|A|_1}.

In the case {{math|1 ≤ k

:|z|^n\leq |A|_h \left(|z|^{k(n-1)}+\cdots+|z|^k +1\right)^{\frac{1}{k}}=|A|_h \left(\frac{|z|^{kn}-1}{|z|^k-1}\right)^{\frac{1}{k}}\leq|A|_h \left(\frac{|z|^{kn}}{|z|^k-1}\right)^\frac{1}{k}. Thus :|z|^{kn}\leq \left(|A|_h\right)^k \frac{|z|^{kn}}{|z|^k-1}, which simplifies to :|z|^k\leq 1+\left(|A|_h\right)^k.

Thus, in all cases :|z|\leq \left | \left (1,|A|_h \right ) \right |_k, which finishes the proof.

Other bounds

Many other upper bounds for the magnitudes of all roots have been given.

Fujiwara's bound :2, \max \left{ \left|\frac{a_{n-1}}{a_n}\right|, \left|\frac{a_{n-2}}{a_n}\right|^{\frac{1}{2}}, \ldots, \left|\frac{a_1}{a_n}\right|^\frac{1}{n-1}, \left|\frac{a_0}{2a_n}\right|^\frac 1 n\right}, slightly improves the bound given above by dividing the last argument of the maximum by two.

Kojima's bound is :2,\max \left{ \left|\frac{a_{n-1}}{a_n}\right|,\left|\frac{a_{n-2}}{a_{n-1}}\right|, \ldots, \left|\frac{a_0}{2a_1}\right|\right}, where a_i denotes the ith nonzero coefficient when the terms of the polynomials are sorted by increasing degrees. If all coefficients are nonzero, Fujiwara's bound is sharper, since each element in Fujiwara's bound is the geometric mean of first elements in Kojima's bound.

Sun and Hsieh obtained another improvement on Cauchy's bound. Assume the polynomial is monic with general term aixi. Sun and Hsieh showed that upper bounds 1 + d1 and 1 + d2 could be obtained from the following equations.

:d_1 = \tfrac{1}{2} \left((| a_{n-1}| - 1) + \sqrt{(|a_{n-1}| - 1 )^2 + 4a } \right), \qquad a = \max { |a_i | }.

d2 is the positive root of the cubic equation

:Q(x) = x^3 + (2 - |a_{n-1}|) x^2 + (1 - |a_{n-1}| - |a_{n-2}| ) x - a, \qquad a = \max { |a_i | }

They also noted that d2 ≤ d1.

Landau's inequality

The previous bounds are upper bounds for each root separately. Landau's inequality provides an upper bound for the absolute values of the product of the roots that have an absolute value greater than one. This inequality, discovered in 1905 by Edmund Landau, has been forgotten and rediscovered at least three times during the 20th century.

This bound of the product of roots is not much greater than the best preceding bounds of each root separately. Let z_1, \ldots, z_n be the n roots of the polynomial p. If :M(p)=|a_n|\prod_{j=1}^n \max(1,|z_j|) is the Mahler measure of p, then :M(p)\le \sqrt{\sum_{k=0}^n |a_k|^2}.

Surprisingly, this bound of the product of the absolute values larger than 1 of the roots is not much larger than the best bounds of one root that have been given above for a single root. This bound is even exactly equal to one of the bounds that are obtained using Hölder's inequality.

This bound is also useful to bound the coefficients of a divisor of a polynomial with integer coefficients: if :q= \sum_{k=0}^m b_k x^k is a divisor of p, then :|b_m|\le|a_n|, and, by Vieta's formulas, :\frac{|b_i|}{|b_m|}\le \binom mi \frac{M(p)}{|a_n|}, for , where \binom mi is a binomial coefficient. Thus :|b_i|\le \binom mi M(p)\le \binom mi \sqrt{\sum_{k=0}^n |a_k|^2}, and :\sum_{i=0}^m |b_i| \le 2^m M(p) \le 2^m \sqrt{\sum_{k=0}^n |a_k|^2}.

Discs containing some roots

From Rouché theorem

Rouché's theorem allows defining discs centered at zero and containing a given number of roots. More precisely, if there is a positive real number R and an integer 0 ≤ kn such that :|a_k| R^k |a_0|+\cdots+|a_{k-1}| R^{k-1}+|a_{k+1}| R^{k+1}+\cdots+|a_n| R^n, then there are exactly k roots, counted with multiplicity, of absolute value less than R. If |z|=R, then :\begin{align} |a_0 &+\cdots+a_{k-1}z^{k-1}+a_{k+1} z^{k+1}+\cdots+a_n z^n|\ &\le |a_0|+\cdots+|a_{k-1}| R^{k-1}+|a_{k+1}| R^{k+1}+\cdots+|a_n| R^n\ &\le |a_k| R^k \le |a_k z^k|. \end{align} By Rouché's theorem, this implies directly that p(z) and z^k have the same number of roots of absolute values less than R, counted with multiplicities. As this number is k, the result is proved.

The above result may be applied if the polynomial :h_k(x)=|a_0| +\cdots+|a_{k-1}| x^{k-1}-|a_k|x^k+|a_{k+1}| x^{k+1}+\cdots+|a_n| x^n. takes a negative value for some positive real value of x.

In the remaining of the section, suppose that a**0 ≠ 0. If it is not the case, zero is a root, and the localization of the other roots may be studied by dividing the polynomial by a power of the indeterminate, getting a polynomial with a nonzero constant term.

For and , Descartes' rule of signs shows that the polynomial has exactly one positive real root. If R_0 and R_n are these roots, the above result shows that all the roots satisfy :R_0\le |z| \le R_1. As these inequalities apply also to h_0 and h_n, these bounds are optimal for polynomials with a given sequence of the absolute values of their coefficients. They are thus sharper than all bounds given in the preceding sections.

For {{math|0 h_k(x) either has two positive real roots that are not multiple, or is nonnegative for every positive value of x. So, the above result may be applied only in the first case. If R_{k,1} are these two roots, the above result implies that :|z| \le R_{k,1} for k roots of p, and that :|z| \ge R_{k,2} for the nk other roots.

Instead of explicitly computing R_{k,1} and R_{k,2}, it is generally sufficient to compute a value R_k such that h_k(R_k) (necessarily R_{k,1}). These R_k have the property of separating roots in terms of their absolute values: if, for {{math|h R_h and R_k exist, there are exactly kh roots z such that R_h

For computing R_k, one can use the fact that \frac{h(x)}{x^k} is a convex function (its second derivative is positive). Thus R_k exists if and only if \frac{h(x)}{x^k} is negative at its unique minimum. For computing this minimum, one can use any optimization method, or, alternatively, Newton's method for computing the unique positive zero of the derivative of \frac{h(x)}{x^k} (it converges rapidly, as the derivative is a monotonic function).

One can increase the number of existing R_k's by applying the root squaring operation of the Dandelin–Graeffe iteration. If the roots have distinct absolute values, one can eventually completely separate the roots in terms of their absolute values, that is, compute n + 1 positive numbers R_0 such there is exactly one root with an absolute value in the open interval (R_{k-1},R_k), for .

From Gershgorin circle theorem

The Gershgorin circle theorem applies the companion matrix of the polynomial on a basis related to Lagrange interpolation to define discs centered at the interpolation points, each containing a root of the polynomial; see for details.

If the interpolation points are close to the roots of the roots of the polynomial, the radii of the discs are small, and this is a key ingredient of Durand–Kerner method for computing polynomial roots.

Bounds of real roots

For polynomials with real coefficients, it is often useful to bound only the real roots. It suffices to bound the positive roots, as the negative roots of p(x) are the positive roots of p(–x).

Clearly, every bound of all roots applies also for real roots. But in some contexts, tighter bounds of real roots are useful. For example, the efficiency of the method of continued fractions for real-root isolation strongly depends on tightness of a bound of positive roots. This has led to establishing new bounds that are tighter than the general bounds of all roots. These bounds are generally expressed not only in terms of the absolute values of the coefficients, but also in terms of their signs.

Other bounds apply only to polynomials whose all roots are reals (see below).

Bounds of positive real roots

To give a bound of the positive roots, one can assume a_n 0 without loss of generality, as changing the signs of all coefficients does not change the roots.

Every upper bound of the positive roots of :q(x)=a_nx^n + \sum_{i=0}^{n-1} \min(0,a_i)x^i is also a bound of the real zeros of :p(x)=\sum_{i=0}^n a_ix^i. In fact, if B is such a bound, for all x B, one has p(x) ≥ q(x) 0.

Applied to Cauchy's bound, this gives the upper bound :1+{\textstyle\max_{i=0}^{n-1}} \frac{-a_i}{a_n} for the real roots of a polynomial with real coefficients. If this bound is not greater than , this means that all nonzero coefficients have the same sign, and that there is no positive root.

Similarly, another upper bound of the positive roots is :2,{\max_{a_ia_n If all nonzero coefficients have the same sign, there is no positive root, and the maximum must be zero.

Other bounds have been recently developed, mainly for the method of continued fractions for real-root isolation.

Polynomials whose roots are all real

If all roots of a polynomial are real, Laguerre proved the following lower and upper bounds of the roots, by using what is now called Samuelson's inequality.

Let \sum_{k=0}^n a_k x^k be a polynomial with all real roots. Then its roots are located in the interval with endpoints :-\frac{a_{n-1}}{na_n} \pm \frac{n-1}{na_n}\sqrt{a^2_{n-1} - \frac{2n}{n-1}a_n a_{n-2}}.

For example, the roots of the polynomial x^4+5x^3+5x^2-5x-6=(x+3)(x+2)(x+1)(x-1) satisfy :-3.8118

Root separation

The root separation of a polynomial is the minimal distance between two roots, that is the minimum of the absolute values of the difference of two roots: :\operatorname{sep}(p) = \min{|\alpha-\beta|;;; \alpha \neq \beta \text{ and } p(\alpha)=p(\beta)=0}

The root separation is a fundamental parameter of the computational complexity of root-finding algorithms for polynomials. In fact, the root separation determines the precision of number representation that is needed for being certain of distinguishing distinct roots. Also, for real-root isolation, it allows bounding the number of interval divisions that are needed for isolating all roots.

For polynomials with real or complex coefficients, it is not possible to express a lower bound of the root separation in terms of the degree and the absolute values of the coefficients only, because a small change on a single coefficient transforms a polynomial with multiple roots into a square-free polynomial with a small root separation, and essentially the same absolute values of the coefficient. However, involving the discriminant of the polynomial allows a lower bound.

For square-free polynomials with integer coefficients, the discriminant is an integer, and has thus an absolute value that is not smaller than . This allows lower bounds for root separation that are independent from the discriminant.

Mignotte's separation bound is

:\operatorname{sep}(p) \frac {\sqrt{3|\Delta(p)|}}{n^{(n+1)/2}(|p|_2)^{n-1}}, where \Delta(p) is the discriminant, and \textstyle|p|_2=\sqrt{a_0^2+a_1^2+\dots+a_n^2}.

For a square free polynomial with integer coefficients, this implies :\operatorname{sep}(p) \frac {\sqrt 3}{n^{n/2+1}(|p|_2)^{n-1}} \frac 1{2^{2s^2}}, where s is the bit size of p, that is the sum of the bitsize of its coefficients.

Gauss–Lucas theorem

Main article: Gauss–Lucas theorem

The Gauss–Lucas theorem states that the convex hull of the roots of a polynomial contains the roots of the derivative of the polynomial.

A sometimes useful corollary is that, if all roots of a polynomial have positive real part, then so do the roots of all derivatives of the polynomial.

A related result is Bernstein's inequality. It states that for a polynomial P of degree n with derivative P′ we have :\max_{|z| \leq 1} \big|P'(z)\big| \le n \max_{|z| \leq 1} \big|P(z)\big|.

Statistical distribution of the roots

If the coefficients a**i of a random polynomial are independently and identically distributed with a mean of zero, most complex roots are on the unit circle or close to it. In particular, the real roots are mostly located near ±1, and, moreover, their expected number is, for a large degree, less than the natural logarithm of the degree.

If the coefficients are Gaussian distributed with a mean of zero and variance of σ then the mean density of real roots is given by the Kac formula

: m( x ) = \frac { \sqrt{ A( x ) C( x ) - B( x )^2 }} {\pi A( x )}

where

: \begin{align} A(x) &= \sigma \sum_{i=0}^{n-1} x^{2i} = \sigma \frac{x^{2n} - 1}{x^2-1}, \ B(x) &= \frac 1 2 \frac{ d } { dx } A( x ), \ C(x) &= \frac 1 4 \frac{d^2} {dx^2} A(x) + \frac 1 { 4x } \frac d {dx} A(x). \end{align}

When the coefficients are Gaussian distributed with a non-zero mean and variance of σ, a similar but more complex formula is known.

Real roots

For large n, the mean density of real roots near x is asymptotically

: m( x ) = \frac{ 1 } { \pi | 1 - x^2 | } if x^2-1\ne 0, and : m(\pm 1) = \frac 1 \pi \sqrt {\frac{n^2 - 1}{12}}

It follows that the expected number of real roots is, using big O notation : N_n = \frac 2 \pi \ln n + C + \frac 2 {\pi n} +O( n^{ -2 } ) where C is a constant approximately equal to .

In other words, the expected number of real roots of a random polynomial of high degree is lower than the natural logarithm of the degree.

Kac, Erdős and others have shown that these results are insensitive to the distribution of the coefficients, if they are independent and have the same distribution with mean zero. However, if the variance of the ith coefficient is equal to \binom ni, the expected number of real roots is \sqrt n.

Geometry of multiple roots

A polynomial p can be written in the form of

p(x) = a (x-z_1)^{m_1} \cdots (x-z_k)^{m_k}

with distinct roots z_1,\ldots,z_k and corresponding multiplicities m_1,\ldots,m_k. A root z_j is a simple root if m_j=1 or a multiple root if m_j\ge 2. Simple roots are Lipschitz continuous with respect to coefficients but multiple roots are not. In other words, simple roots have bounded sensitivities but multiple roots are infinitely sensitive if the coefficients are perturbed arbitrarily. As a result, most root-finding algorithms suffer substantial loss of accuracy on multiple roots in numerical computation.

In 1972, William Kahan proved that there is an inherent stability of multiple roots. Kahan discovered that polynomials with a particular set of multiplicities form what he called a pejorative manifold and proved that a multiple root is Lipschitz continuous if the perturbation maintains its multiplicity.

This geometric property of multiple roots is crucial in numerical computation of multiple roots.

Notes

References

  • {{cite book | last=Yap | first= Chee-Keng| title=Fundamental problems of algorithmic algebra| publisher=Oxford University Press| year = 2000|isbn=978-0195125160| url=http://160592857366.free.fr/joe/ebooks/ShareData/Fundamental%20Problems%20in%20Algorithmic%20Algebra%201993%20Yap.pdf}}.

References

  1. (1997). "Bounding the Roots of Polynomials". [[The College Mathematics Journal]].
  2. Lagrange J–L (1798) Traité de la résolution des équations numériques. Paris.
  3. Cauchy Augustin-Louis (1829). ''Exercices de mathématique''. Œuvres 2 (9) p.122
  4. {{harvnb. Yap. 2000
  5. Marden, M.. (1966). "Geometry of Polynomials". Amer. Math. Soc..
  6. Fujiwara, M.. (1916). "Über die obere Schranke des absoluten Betrages der Wurzeln einer algebraischen Gleichung". [[Tohoku Mathematical Journal]].
  7. Kojima, T.. (1917). "On the limits of the roots of an algebraic equation". Tohoku Mathematical Journal.
  8. (1996). "A note on circular bound of polynomial zeros". IEEE Transactions on Circuits and Systems I: Fundamental Theory and Applications.
  9. E. Landeau, Sur quelques th&or&mes de M. Petrovic relatifs aux zéros des fonctions analytiques, ''Bull. Sot. Math. France'' 33 (1905), 251-261.
  10. M. Mignotte. An inequality about factors of polynomials, ''Math. Comp.'' 28 (1974). 1153-1157.
  11. W. Specht, Abschätzungen der Wurzeln algebraischer Gleichungen, Math. Z. 52 (1949). 310-321.
  12. J. Vincente Gonçalves, L’inégalité de W. Specht. ''Univ. Lisboa Revista Fac. Ci A. Ci. Mat.'' 1 (195O), 167-171.
  13. Mignotte, Maurice. (1983). "Computer Algebra : Symbolic and Algebraic Computation". Springer.
  14. Mignotte, M. (1988). An inequality about irreducible factors of integer polynomials. ''Journal of number theory'', 30(2), 156-166.
  15. (2008). "Improving the performance of the continued fractions method using new bounds of positive roots". Nonlinear Analysis: Modelling and Control.
  16. Ştefănescu, D. ''Bounds for Real Roots and Applications to Orthogonal Polynomials''. In: V. G. Ganzha, E. W. Mayr and E. V. Vorozhtsov (Editors): Proceedings of the 10th International Workshop on Computer Algebra in Scientific Computing, CASC 2007, pp. 377 – 391, Bonn, Germany, September 16-20, 2007. LNCS 4770, Springer Verlag, Berlin, Heidelberg.
  17. Laguerre E. (1880). "Sur une méthode pour obtenir par approximation les racines d'une équation algébrique qui a toutes ses racines réelles". [[Nouvelles Annales de Mathématiques]].
  18. Mignotte, Maurice. (1982). "Some Useful Bounds". Springer.
  19. {{harvnb. Yap. 2000
  20. Collins, George E.. (2001). "Polynomial minimum root separation". Journal of Symbolic Computation.
  21. Kac, M.. (1943). "On the average number of real roots of a random algebraic equation". [[Bulletin of the American Mathematical Society]].
  22. Kac, M.. (1948). "On the Average Number of Real Roots of a Random Algebraic Equation (II)". [[Proceedings of the London Mathematical Society]].
  23. (1995). "How many zeros of a random polynomial are real?". Bulletin of the American Mathematical Society.
  24. (1972). "Conserving confluence curbs ill-condition". Technical Report 6, Computer Science, Univ. Of California.
Info: Wikipedia Source

This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.

Want to explore this topic further?

Ask Mako anything about Geometrical properties of polynomial roots — get instant answers, deeper analysis, and related topics.

Research with Mako

Free with your Surf account

Content sourced from Wikipedia, available under CC BY-SA 4.0.

This content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.

Report