Newton-Raphson method
Enlarge text Shrink text-
Save successfulThe item can be found in your Personal ZoneשגיאהLog in to your account to save
Information for Authority record
Other Identifiers
- Work cat.: 92-186946: Radzik, T. Newton's method for fractional ... 1992.
- Eisenreich. Mathematik:p. 545 (Newton['s] method; Newton-Raphson algorithm, Newton-Raphson formula, Newton-Raphson method, second-order Newton-Raphson process, quadratically convergent Newton-Raphson process, Newton['s] approximation formula)
- Math. subj. classif.(49-XX, Calculus of variations and optimal control, Optimization, 49Mxx, Methods of successive approximations; 49M15, Methods of Newton-Raphson, Galerkin, and Ritz types)
- Encyc. dict. math.:p. 1125 (Newton-Raphson method; Newton iterative process)
- Encyc. math.(Newton method; method of tangents)
- CompuMath cit. index.
- LC data base, 9/17/92.
Wikipedia description:
In numerical analysis, the Newton–Raphson method, also known simply as Newton's method, named after Isaac Newton and Joseph Raphson, is a root-finding algorithm which produces successively better approximations to the roots (or zeroes) of a real-valued function. The most basic version starts with a real-valued function f, its derivative f′, and an initial guess x0 for a root of f. If f satisfies certain assumptions and the initial guess is close, then x 1 = x 0 − f ( x 0 ) f ′ ( x 0 ) {\displaystyle x_{1}=x_{0}-{\frac {f(x_{0})}{f'(x_{0})}}} is a better approximation of the root than x0. Geometrically, (x1, 0) is the x-intercept of the tangent to the graph of f at (x0, f(x0)): that is, the improved guess, x1, is the unique root of the linear approximation of f at the initial guess, x0. The process is repeated as x n + 1 = x n − f ( x n ) f ′ ( x n ) {\displaystyle x_{n+1}=x_{n}-{\frac {f(x_{n})}{f'(x_{n})}}} until a sufficiently precise value is reached. The number of correct digits roughly doubles with each step. This algorithm is first in the class of Householder's methods, and was succeeded by Halley's method. The method can also be extended to complex functions and to systems of equations.
Read more on Wikipedia >