Working mass: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Addbot
m Bot: Migrating 3 interwiki links, now provided by Wikidata on d:q1965381
De-capitalized "xenon/
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
A '''root-finding algorithm''' is a numerical method, or [[algorithm]], for finding a value ''x'' such that ''f''(''x'') = 0, for a given [[function (mathematics)|function]] ''f''.  Such an ''x'' is called a [[root of a function|root]] of the function ''f''.
Andrew Berryhill is what his spouse enjoys to call him and he totally digs that name. To perform lacross is some thing he would never give up. I am an invoicing officer and I'll be promoted quickly. I've usually cherished living in Mississippi.<br><br>my site :: [http://www.punjabitv.net/profile.php?u=LoFalconer free tarot readings]
 
This article is concerned with finding [[Scalar (mathematics)|scalar]], [[real number|real]] or [[complex number|complex]] roots, approximated as floating point numbers. Finding integer roots or exact algebraic roots are separate problems, whose algorithms have little in common with those discussed here. (See: [[Diophantine equation]] as for integer roots)
 
Finding a root of ''f''(''x'') &minus; ''g''(''x'') = 0 is the same as solving the [[equation]] ''f''(''x'') = ''g''(''x''). Here, ''x'' is called the ''unknown'' in the equation. Conversely, any equation can take the [[canonical form]] ''f''(''x'') = 0, so [[equation solving]] is the same thing as computing (or ''finding'') a root of a function.
 
Numerical root-finding methods use [[iteration]], producing a [[sequence]] of numbers that hopefully converge towards a [[Limit of a sequence|limit]] (the so-called "[[Fixed point (mathematics)|fixed point]]") which is a root. The first values of this series are ''initial guesses''. The method computes subsequent values based on the old ones and the function ''f''.
 
The behaviour of root-finding algorithms is studied in [[numerical analysis]]. Algorithms perform best when they take advantage of known characteristics of the given function. Thus an algorithm to find isolated real roots of a low-degree polynomial in one variable may bear little resemblance to an algorithm for complex roots of a "black-box" function which is not even known to be differentiable. Questions include ability to separate close roots, robustness in achieving reliable answers despite inevitable numerical errors, and rate of convergence.
 
== Bracketing methods ==
 
=== Bisection method ===
The simplest root-finding algorithm is the [[bisection method]]. It works when ''f'' is a [[continuous function]] and it requires previous knowledge of two initial guesses, ''a'' and ''b'', such that ''f''(''a'') and ''f''(''b'') have opposite signs. Although it is reliable, it converges slowly, gaining one [[bit]] of accuracy with each iteration.
 
=== False position (regula falsi) ===
The [[false position method]], also called the ''regula falsi'' method, is like the secant method. However, instead of retaining the last two points, it makes sure to keep one point on either side of the root.  The false position method is faster than the bisection method and more robust than the secant method, but requires the two starting points to bracket the root. [[Ridders' method]] is a variant on the false-position method that also evaluates the function at the midpoint of the interval, giving faster convergence with similar robustness.
 
== Open methods ==
 
=== Newton's method (and similar derivative-based methods) ===
[[Newton's method]] assumes the function ''f'' to have a continuous [[derivative]]. Newton's method may not converge if started too far away from a root. However, when it does converge, it is faster than the bisection method, and is usually quadratic. Newton's method is also important because it readily generalizes to higher-dimensional problems. Newton-like methods with higher orders of convergence are the [[Householder's method]]s. The first one after Newton's method is [[Halley's method]] with cubic order of convergence.
 
=== Secant method ===
Replacing the derivative in Newton's method with a [[finite difference]], we get the [[secant method]]. This method does not require the computation (nor the existence) of a derivative, but the price is slower convergence (the order is approximately 1.6). A generalization of the secant method in higher dimensions is [[Broyden's method]].
 
=== Interpolation ===
The secant method also arises if one approximates the unknown function ''f'' by [[linear interpolation]]. When [[polynomial interpolation|quadratic interpolation]] is used instead, one arrives at [[Muller's method]]. It converges faster than the secant method. A particular feature of this method is that the iterates ''x''<sub>''n''</sub> may become [[complex number|complex]].
 
[[Sidi's method]] allows for interpolation with an arbitrarily high [[Degree of a polynomial|degree]] polynomial. The higher the degree of the interpolating polynomial, the faster the convergence. Sidi's method allows for convergence with an order arbitrarily close to 2.
 
=== Inverse interpolation ===
This can be avoided by interpolating the [[inverse function|inverse]] of ''f'', resulting in the [[inverse quadratic interpolation]] method. Again, convergence is asymptotically faster than the secant method, but inverse quadratic interpolation often behaves poorly when the iterates are not close to the root.
 
==Combinations of methods==
 
=== Brent's method ===
[[Brent's method]] is a combination of the bisection method, the secant method and [[inverse quadratic interpolation]]. At every iteration, Brent's method decides which method out of these three is likely to do best, and proceeds by doing a step according to that method. This gives a robust and fast method, which therefore enjoys considerable popularity.
 
== Finding roots of polynomials ==
Much attention has been given to the special case that the function ''f'' is a [[polynomial]], and there are several root-finding algorithms for polynomials. For a univariate polynomial of degrees one (linear polynomial) through four (quartic polynomial), there are closed-form solutions which produce all roots.  Linear polynomials are easy to solve, but using the [[quadratic formula]] to solve [[Quadratic equation|quadratic]] (second degree) equations may require some care to ensure numerical stability. The closed-form solutions for degrees three (cubic polynomical) and four (quartic polynomial) are complicated and require much more care; consequently, numerical methods such as [[Bairstow's method]] may be easier to use. Fifth degree (quintic) and higher-degree polynomials do not have a general solution according to the [[Abel–Ruffini theorem]] (1824, 1799).
 
===Finding one root at a time===
 
The general idea is to find a root of the polynomial and then apply [[Horner's method]] to remove the corresponding factor according to the [[Ruffini rule]].
 
This iterative scheme is numerically unstable, the approximation errors accumulate during the successive factorizations, so that the last roots are determined with a polynomial that deviates widely from a factor of the original polynomial. To reduce this error it is advisable to find the roots in increasing order of magnitude.
 
[[Wilkinson's polynomial]] illustrates that high [[precision (arithmetic)|precision]] may be necessary when computing the roots of a polynomial given its coefficients: the problem of finding the roots from the coefficients is in general [[ill-conditioned]].
 
 
The most simple method to find a single root fast is using Newton's method. One can use [[Horner's method]] twice to efficiently evaluate the value of the polynomial function and its first derivative, this combination is called [[Birge–Vieta's method]]. This method provides quadratic convergence for simple roots at the cost of two polynomial evaluations per step.
 
 
Closely related to Newton's method are [[Halley's method]] and [[Laguerre's method]]. Using one additional Horner evaluation, the value of the second derivative is used to obtain methods of cubic convergence order for simple roots. If one starts from a point ''x'' close to a root and uses the same complexity of ''6'' function evaluations, these methods perform two steps with an residual of ''O''(|''f''(''x'')|<sup>9</sup>), compared to three steps of Newtons method with an reduction ''O''(|''f''(''x'')|<sup>8</sup>), giving a slight advantage to these methods.
 
When applying these methods to polynomials with real coefficients and real starting points, Newton's and Halley's method stay inside the real number line. One has to chose complex starting points to find complex roots. In contrast, the Laguerre method with a square root in its evaluation will on itself leave the real axis.
 
 
Another class of methods is based on translating the problem of finding polynomial roots to the problem of finding eigenvaluesof the [[companion matrix]] of the polynomial. In principle, one can use any [[eigenvalue algorithm]] to find the roots of the polynomial. However, for efficiency reasons one prefers methods that employ the structure of the matrix, that is, can be implemented in matrix-free form. Among these methods are the [[power method]], whose application to the transpose of the companion matrix is the classical [[Bernoulli's method]] to find the root of greatest modulus. The [[inverse power method]] with shifts, which finds some smallest root first, is what drives the complex (''cpoly'') variant of the [[Jenkins–Traub method]] and gives it its numerical stability. Additionally, it is insensitive to multiple roots and has fast convergence with order <math>1+\Phi\approx 2.6</math> even in the presence of clustered roots. This fast convergence comes with a cost of 3 Horner evaluations per step resulting in a residual of ''O''(|''f''(''x'')|<sup>2+3&Phi;</sup>), which is slower than three steps of Newton's method.
 
===Finding roots in pairs===
 
If the given polynomial only has real coefficients, one may wish to avoid computations with real numbers. To that effect, one has to find quadratic factors for pairs of conjugate complex roots. The application of the multi-dimensional Newton's method to this task results in [[Bairstow's method]]. In the framework of inverse power iterations of the companion matrix, the double shift method of Francis results in the real (''rpoly'')variant of the [[Jenkins–Traub method]].
 
===Finding all roots at once===
 
The simple [[Durand–Kerner method|Durand–Kerner]] and the slightly more complicated [[Aberth method]] simultaneously find all of the roots using only simple [[complex number]] arithmetic. Accelerated algorithms for multi-point evaluation and interpolation similar to the [[Fast Fourier Transform]] can help speed them up for large degrees of the polynomial. It is advisable to chose an unsymmetric, but evenly distributed set of initial points.
 
Another method with this style is the [[Dandelin–Gräffe method]] (sometimes also falsely ascribed to [[Nikolai Ivanovich Lobachevsky|Lobachevsky]]) which uses polynomial transformations to repeatedly and implicitely square the roots. This greatly magnifies variances in the roots. Applying Viete's formulas, one obtains easy approximations for the modulus of the roots, and with some more effort, for the roots themselves.
 
 
===Exclusion and enclosure methods===
 
Several fast tests exist that tell if a segment of the real line or a region of the complex plane contains no roots. By bounding the modulus of the roots and recursively subdividing the initial region indicated by these bounds, one can isolate small regions that may contain roots and then apply other methods to locate them exactly.
 
All these methods require to find the coefficients of shifted and scaled versions of the polynomial. For large degrees, FFT-based accelerated methods become viable.
 
For real roots, [[Sturm's theorem]] and [[Descartes' rule of signs]] with its extension in the Budan–Fourier theorem provide guides to locating and separating roots. This plus [[interval arithmetic]] combined with [[Newton's method]] yields robust and fast algorithms.
 
The [[Lehmer–Schur algorithm]] uses the Schur–Cohn test for circles, Wilf's global bisection algorithm uses a winding number computation for rectangular regions in the complex plane.
 
The [[splitting circle method]] uses FFT-based polynomial transformations to find large-degree factors corresponding to clusters of roots. The precision of the factorization is maximized using a Newton-type iteration. This method is useful for finding the roots of polynomials of high degree to arbitrary precision; it has almost optimal complexity in this setting.
 
===Method based on the Budan–Fourier theorem or Sturm chains===
 
The methods in this class give for polynomials with rational coefficients, and when carried out in rational arithmetic, provably complete enclosures of all real roots by rational intervals. The test of an interval for real roots using Budans theorem is computationally simple but may yield false positive results. However, these will be reliably detected in the following transformation and refinement of the interval. The test based on Sturm chains is computationally more involved but gives always the exact number of real roots in the interval.
 
The algorithm for isolating the roots, using Descartes' rule of signs and [[Budan's theorem#Vincent's theorem (1834 and 1836)|Vincent's theorem]], had been originally called ''modified Uspensky's algorithm'' by its inventors Collins and Akritas.<ref name=CA>{{cite book|last=Collins|first=George E.|coauthor=Alkiviadis G. Akritas|title =Polynomial Real Root Isolation Using Descartes' Rule of Signs|year = 1976|pages=272–275|series = SYMSAC '76, Proceedings of the third ACM symposium on Symbolic and algebraic computation|publisher = ACM|location = Yorktown Heights, NY, USA|url=http://doi.acm.org/10.1145/800205.806346}}</ref> After going through names like "Collins–Akritas method" and "Descartes' method" (too confusing if ones considers Fourier's article<ref name=Fourier>{{cite journal|last=Fourier|first=Jean Baptiste Joseph|title=Sur l'usage du théorème de Descartes dans la recherche des limites des racines|year=1820|journal=Bulletin des Sciences, par la Société Philomatique de Paris|pages=156–165|url=http://ia600309.us.archive.org/22/items/bulletindesscien20soci/bulletindesscien20soci.pdf}}</ref>), it was finally François Boulier, of Lille University, who gave it the name ''[[Vincent's theorem#Vincent–Collins–Akritas (VCA, 1976)|Vincent–Collins–Akritas]]'' (VCA) method,<ref>{{cite book|last=Boulier|first=François|title=Systèmes polynomiaux : que signifie " résoudre " ?|url=http://www.lifl.fr/~boulier/polycopies/resoudre.pdf|year=2010|publisher=Université Lille 1}}</ref> p.&nbsp;24, based on the fact that "Uspensky's method" does not exist<ref name="akritas">{{cite book|last=Akritas|first=Alkiviadis G.|title=There's no "Uspensky's Method"|url=http://dl.acm.org/citation.cfm?id=32457|year=1986|publisher=In: Proceedings of the fifth ACM Symposium on Symbolic and Algebraic Computation (SYMSAC '86, Waterloo, Ontario, Canada), pp. 88–90}}</ref> and neither does "Descartes' method".<ref>{{cite book|last=Akritas|first=Alkiviadis G.|title=There is no "Descartes' method"|url=http://inf-server.inf.uth.gr/~akritas/articles/71.pdf|year=2008|publisher=In: M.J.Wester and M. Beaudin (Eds), Computer Algebra in Education, AullonaPress, USA, pp. 19–35}}</ref> This algorithm has been improved by Rouillier and Zimmerman,<ref name=RZ>F. Rouillier and P. Zimmerman,  ''Efficient isolation of polynomial's real roots'', Journal of Computational and Applied Mathematics '''162''' (2004)</ref> and the resulting implementation is, to the date, the fastest bisection method. It has the same worst case [[Computational complexity theory|complexity]] as Sturm algorithm, but is almost always much faster. It is the default algorithm of [[Maple (software)|Maple]] root-finding function ''fsolve''. Another method based on [[Budan's theorem#Vincent's theorem (1834 and 1836)|Vincent's theorem]] is the ''[[Vincent's theorem#Vincent–Akritas–Strzeboński (VAS, 2005)|Vincent–Akritas–Strzeboński]]'' (VAS) method;<ref name=VAS>{{cite journal|last=Akritas|first=Alkiviadis G.|coauthors=A.W. Strzeboński, P.S. Vigklas|title=Improving the performance of the continued fractions method using new bounds of positive roots|journal=Nonlinear Analysis: Modelling and Control|year=2008|volume=13|pages=265–279|url=http://www.lana.lt/journal/30/Akritas.pdf}}</ref> it has been shown<ref name=AS>{{cite journal|last=Akritas|first=Alkiviadis G.|coauthors=Adam W. Strzeboński|title=A Comparative Study of Two Real Root Isolation Methods|journal=Nonlinear Analysis: Modelling and Control|year=2005|volume=10|number=4|pages=297–304|url=http://www.lana.lt/journal/19/Akritas.pdf}}</ref> that the VAS (continued fractions) method is faster than the fastest implementation of the VCA (bisection) method,<ref name="RZ"/> a fact that was independently confirmed elsewhere;<ref name=TE>{{cite journal|last=Tsigaridas, P.E.|coauthors=I.Z. Emiris,|title=Univariate polynomial real root isolation: Continued fractions revisited|journal=LNCS|year=2006|volume=4168|pages=817–828|url=http://www.springerlink.com/content/c70468755x403481/}}</ref> more precisely, for the Mignotte polynomials of high degree VAS is about 50,000 times faster than the fastest implementation of VCA. VAS is the default algorithm for root isolation in [[Mathematica]], [[Sage (mathematics software)|Sage]], [[SymPy]], [[Xcas]]. See [[Budan's theorem]] for a description of the historical background of these methods. For a comparison between Sturm's method and VAS use the functions realroot(poly) and time(realroot(poly)) of [[Xcas]]. By default, to isolate the real roots of poly realroot uses the VAS method; to use Sturm's method write realroot(sturm, poly). See also the [[Root-finding algorithm#External links|External links]] for a pointer to an iPhone/iPod/iPad application that does the same thing.
 
===Finding multiple roots of polynomials===
{{main|Square-free factorization}}
Most root-finding algorithms behave badly when there are [[Multiplicity (mathematics)|multiple root]]s or very close roots. However, for polynomials whose coefficients are exactly given as [[integer]]s or [[rational number]]s, there is an efficient method to factorize them into factors that have only simple roots and whose coefficients are also exactly given. This method, called '''[[square-free factorization]]''', is based on the fact that the multiple roots of a polynomial are the roots of the [[polynomial greatest common divisor|greatest common divisor]] of the polynomial and its derivative.
 
The square-free factorization of a polynomial ''p'' is a factorization <math>p=p_1p_2^2\cdots p_k^k </math> where each <math>p_i</math> is either 1 or a polynomial without multiple root, and two different <math>p_i</math> do not have any common root.
 
An efficient method to compute this factorization is [[Square-free factorization#Yun's algorithm|Yun's algorithm]].
 
==See also==
<div style="-moz-column-count:3; column-count:3;">
* [[Nth root algorithm|''n''th root algorithm]]
* [[Multiplicity (mathematics)]]
* [[Polynomial greatest common divisor]]
* [[Polynomial]]
* [[Graeffe's method]]
* [[Cryptographically secure pseudorandom number generator]] — a class of functions designed specifically to be unsolvable by root-finding algorithms.
* [[System of polynomial equations]] — root-finding algorithms in the multivariate case
* [[MPSolve]]
* [[GNU Scientific Library]]
</div>
 
==References==
{{Reflist}}
*{{Cite book | last1=Press | first1=WH | last2=Teukolsky | first2=SA | last3=Vetterling | first3=WT | last4=Flannery | first4=BP | year=2007 | title=Numerical Recipes: The Art of Scientific Computing | edition=3rd | publisher=Cambridge University Press |  publication-place=New York | isbn=978-0-521-88068-8 | chapter=Chapter 9. Root Finding and Nonlinear Sets of Equations | chapter-url=http://apps.nrbook.com/empanel/index.html#pg=442}}
 
==External links==
*[http://math.fullerton.edu/mathews/a2001/Animations/RootFinding/FixedPoint/FixedPoint.html  Animations for Fixed Point Iteration]
*[http://gams.nist.gov/serve.cgi/Class/F1a1/ GAMS: Roots of polynomials with real coefficients]
*[http://www.hvks.com/Numerical/websolver.php Free online polynomial root finder for both real and complex coefficients]
* Kehagias, Spyros: RealRoots, a free App for iPhone, iPod Touch and iPad to compare Sturm's method and VAS http://itunes.apple.com/gr/app/realroots/id483609988?mt=8
 
[[Category:Root-finding algorithms|*]]
 
[[zh:介值定理#零点定理]]

Latest revision as of 00:36, 9 November 2014

Andrew Berryhill is what his spouse enjoys to call him and he totally digs that name. To perform lacross is some thing he would never give up. I am an invoicing officer and I'll be promoted quickly. I've usually cherished living in Mississippi.

my site :: free tarot readings