Newton's Method — Definition, Formula & Examples
Newton's Method is an iterative technique that uses the tangent line at a current guess to find successively better approximations to a root (zero) of a function. Starting from an initial estimate, each iteration refines the guess by following the tangent line to where it crosses the x-axis.
Given a differentiable function and an initial approximation to a root of , Newton's Method generates a sequence defined by the recurrence , provided . Under suitable conditions (e.g., is twice continuously differentiable and is sufficiently close to a simple root), the sequence converges quadratically to the root.
Key Formula
Where:
- = Current approximation to the root
- = Next (improved) approximation
- = Value of the function at the current approximation
- = Value of the derivative at the current approximation
How It Works
You start with a guess near the root you want to find. At each step, you compute the tangent line to the curve at the point and find where that tangent line hits the x-axis — that intersection becomes your next guess . You repeat this process until two consecutive approximations agree to the desired number of decimal places. The method converges very quickly when it works — roughly doubling the number of correct digits with each iteration — but it can fail if the derivative is zero at an iterate, if the initial guess is too far from the root, or if the function has features like inflection points near the root that send iterates away.
Worked Example
Problem: Use Newton's Method with initial guess to approximate by solving . Perform two iterations.
Setup: Identify the function and its derivative.
Iteration 1: Apply the formula with . Compute and .
Iteration 2: Apply the formula with . Compute and .
Answer: After two iterations, , which is already accurate to four decimal places compared to .
Another Example
Problem: Use Newton's Method with to find a root of . Perform two iterations.
Setup: The derivative is .
Iteration 1: Compute and .
Iteration 2: Compute and .
Answer: After two iterations, . The true root is approximately , so further iterations would continue to improve accuracy.
Visualization
Why It Matters
Newton's Method is a core topic in Calculus I and II courses and appears frequently on AP Calculus exams. Engineers and scientists use it constantly — for instance, to solve equations arising in structural analysis, circuit design, and orbital mechanics that have no closed-form solution. It also forms the foundation for more advanced root-finding algorithms studied in numerical analysis courses.
Common Mistakes
Mistake: Forgetting the minus sign in the formula and computing .
Correction: The formula subtracts the ratio: . The subtraction is what moves you toward the root along the tangent line.
Mistake: Using evaluated at or at the root instead of at .
Correction: Both and must be evaluated at the current approximation to compute the next value .
