Content deleted Content added
m Open access bot: add arxiv identifier to citation with #oabot. |
Turbo pencil (talk | contribs) mNo edit summary |
||
Line 1:
In [[mathematics]] and [[computing]], a '''root-finding algorithm''' is an [[algorithm]] for finding roots of [[continuous function]]s.
[[equation solving|Solving an equation]] {{math|1=''f''(''x'') = ''g''(''x'')}} is the same as finding the roots of the function {{math|1=''h''(''x'') = ''f''(''x'') – ''g''(''x'')}}. Thus root-finding algorithms allow solving any [[equation (mathematics)|equation]] defined by continuous functions. However, most root-finding algorithms do not guarantee that they will find all the roots; in particular, if such an algorithm does not find a root, that does not mean that
Most numerical root-finding methods use [[iteration]], producing a [[sequence]] of numbers that hopefully converge towards the root as a [[Limit of a sequence|limit]]. They require one or more ''initial guesses'' of the root as starting values, then each iteration of the algorithm produces a successively more accurate approximation to the root. Since the iteration must be stopped at some point these methods produce an approximation to the root, not an exact solution. Many methods compute subsequent values by evaluating an auxiliary function on the preceding values. The limit is thus a [[Fixed point (mathematics)|fixed point]] of the auxiliary function, which is chosen for having the roots of the original equation as fixed points, and for converging rapidly to these fixed points.
|