Calculus
Textbooks
Boundless Calculus
Derivatives and Integrals
Applications of Differentiation
Calculus Textbooks Boundless Calculus Derivatives and Integrals Applications of Differentiation
Calculus Textbooks Boundless Calculus Derivatives and Integrals
Calculus Textbooks Boundless Calculus
Calculus Textbooks
Calculus
Concept Version 6
Created by Boundless

Newton's Method

Newton's Method is a method for finding successively better approximations to the roots (or zeroes) of a real-valued function.

Learning Objective

  • Use "Newton's Method" to find successively more accurate estimates for a function's $x$-intercept


Key Points

    • Newton's method proceeds by an initial guess which is reasonably close to the true root, then the function is approximated by its tangent line (which can be computed using the tools of calculus).
    • Then compute the $x$-intercept of this tangent line (which is easily done with elementary algebra). This $x$-intercept will typically be a better approximation to the function's root than the original guess, and the method can be iterated.
    • The more times you iterate, the more accurate the approximation to the actual roots.

Terms

  • root

    A zero (of a function).

  • tangent

    a straight line touching a curve at a single point without crossing it there

  • derivative

    a measure of how a function changes as its input changes


Full Text

In numerical analysis, Newton's method (also known as the Newton–Raphson method), named after Isaac Newton and Joseph Raphson, is a method for finding successively better approximations to the roots (or zeroes) of a real-valued function. In other words find $x$ such that $f(x)=0$. Also known as the $x$-intercept.

The Newton-Raphson method in one variable is implemented as follows:

  1. Given a function ƒ defined over the reals x, and its derivative ƒ ', we begin with a first guess x0 for a root of the function f. Provided the function satisfies all the assumptions made in the derivation of the formula, a better approximation x1 is x0 - f(x0) / f'(x0). Geometrically, (x1, 0) is the intersection with the x-axis of a line tangent to f at (x0, f (x0)).The process is repeated as xn+1 = xn - f(xn / f'(xn) until a sufficiently accurate value is reached.

This algorithm is first in the class of Householder's methods, succeeded by Halley's method. The method can also be extended to complex functions and to systems of equations.

Newton's Method

The function $f$ is shown in blue and the tangent line in red. We see that $x_{n+1}$ is a better approximation than $x_n$ for the root $x$ of the function $f$.

The idea of the method is as follows: one starts with an initial guess which is reasonably close to the true root, then the function is approximated by its tangent line (which can be computed using the tools of calculus), and one computes the $x$-intercept of this tangent line (which is easily done with elementary algebra). This $x$-intercept will typically be a better approximation to the function's root than the original guess, and the method can be iterated.

[ edit ]
Edit this content
Prev Concept
Optimization
Concavity and the Second Derivative Test
Next Concept
Subjects
  • Accounting
  • Algebra
  • Art History
  • Biology
  • Business
  • Calculus
  • Chemistry
  • Communications
  • Economics
  • Finance
  • Management
  • Marketing
  • Microbiology
  • Physics
  • Physiology
  • Political Science
  • Psychology
  • Sociology
  • Statistics
  • U.S. History
  • World History
  • Writing

Except where noted, content and user contributions on this site are licensed under CC BY-SA 4.0 with attribution required.