Newton's Iteration (Newton's Method) — Definition, Formula & Examples
Newton's Method is a technique for finding approximate solutions to equations of the form by repeatedly improving a guess using the function's derivative. Each iteration draws a tangent line at the current guess and uses its -intercept as the next, better approximation.
Given a differentiable function and an initial approximation near a root of , Newton's iteration generates a sequence defined by , 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 of the root
- = Next (improved) approximation
- = Value of the function at the current approximation
- = Value of the derivative at the current approximation
How It Works
Start by choosing an initial guess reasonably close to the root you want. Compute and , then apply the formula to get . Repeat the process: plug back in to get , and so on. Each step typically doubles the number of correct decimal digits, so convergence is fast when it works. Stop iterating when successive approximations agree to the desired accuracy or when is small enough.
Worked Example
Problem: Use Newton's Method with initial guess to approximate by solving . Perform two iterations.
Setup: Here and . The iteration formula becomes:
Iteration 1: Start with . Compute and .
Iteration 2: Now use . Compute and .
Answer: After two iterations, , which is already accurate to four decimal places compared to .
Why It Matters
Newton's Method is one of the most widely used root-finding algorithms in engineering, physics, and computer science. Optimization routines in machine learning often rely on Newton-type iterations. In calculus courses, it connects the geometric meaning of the derivative (tangent line slope) to a powerful computational tool.
Common Mistakes
Mistake: Choosing an initial guess where or is very close to zero.
Correction: The formula divides by , so a zero or near-zero derivative causes the method to fail or produce wildly inaccurate results. Choose where the tangent line is not horizontal.
