Loading...
Standard iteration can take many steps to converge, and depends on finding a good rearrangement. The Newton-Raphson method takes a completely different, geometric approach — follow the TANGENT at your current guess down to the x-axis, and that intersection is usually a dramatically better guess.
The big picture
This is the fastest root-finding method in the course, and it needs no algebraic rearrangement at all — just the original function and its derivative. The idea is purely geometric: at your current estimate, draw the tangent line (which you can find because you can differentiate), and follow it down to where it crosses the -axis. Because the tangent hugs the curve closely near the point of contact, this new crossing point is usually a MUCH better approximation to the true root than the standard iteration formula would give in the same number of steps.
What you'll be able to do
At an estimate , the tangent to has gradient . Following this tangent down to the -axis (where ) gives a new, usually better estimate .
Tip — The formula is really just "follow the tangent to the x-axis": rearranging with gives exactly the Newton-Raphson formula.
Applying the formula repeatedly (using each new as the next ) typically converges MUCH faster than basic iteration — often doubling the number of correct decimal places with every single step.
Each Newton-Raphson step roughly SQUARES the error compared to the previous step (once close to the root) — this quadratic convergence is why the method needs so few iterations compared to basic fixed-point iteration.
The method can fail or converge very slowly if the starting value is chosen near a stationary point of (where , making the tangent nearly horizontal and sending far away), or if the starting value is too far from the true root, sometimes jumping to a completely different root.
Tip — A quick sketch of the curve near your chosen starting value helps confirm the tangent is well-behaved (a reasonably steep gradient, not near a turning point) before committing to several iterations.
Think like an examiner
Common misconceptions
Newton-Raphson method
Stretch yourself
Use the Newton-Raphson method with to find and for a root of , giving answers to 4 decimal places.
Hint — Differentiate f(x) first, then apply the formula twice in succession, using each result as the input to the next iteration.
Questions students ask
Key takeaways
How this fits the course
Test yourself
Ready to lock in The Newton-Raphson Method? Pick a mode and earn XP & Dobloons.