Approximation · Topic 21 of 23
Newton's Method
Newton's method solves by replacing the curve with its tangent at the current guess and zeroing that line instead: . Near a simple root it roughly doubles the number of correct digits each step, but every step needs and a starting guess near the root you actually want.
Key ideas
5 things to remember- 1
Each step zeroes the tangent line
The tangent at is . Solving the easy equation gives . Newton is linear approximation applied over and over.
- 2
Every step needs
A horizontal tangent has no -intercept, so does not exist. A nearly horizontal one is almost as bad: for , gives .
- 3
Correct digits roughly double
At a simple root () the error obeys . Three or four steps from a decent start give ten decimals — so carry about twice the digits you intend to report.
- 4
Bracket with the IVT before you iterate
A sign change on a continuous traps a root, and of one sign makes it unique. Bisect two or three times, then start Newton from the midpoint.
- 5
Newton can cycle, diverge or crawl
from cycles ; doubles its distance from the root each step; at a double root the error only halves. Never assume convergence.
Formulas
What to have memorisedNewton's iteration
Minus, always — and at every step.
Where the step comes from
The tangent at crosses the axis at .
Square roots:
Simplify the step to one fraction before substituting numbers.
Error law ()
lies between and ; this is quadratic convergence.
Critical point of
Optimising means running Newton on , so the step uses .
Root of multiplicity
Plain Newton only halves the error at a double root; this restores speed.
Bisection bracket after steps
Safe but slow: about steps per decimal digit.
Run Newton's method on an exam
The steps, in order- 1
Move everything to one side so the question reads , then differentiate to get .
- 2
Bracket the root: find with and of opposite signs, and check has one sign there.
- 3
Pick inside the bracket with comfortably away from ; two bisections give a safe one.
- 4
Simplify to a single fraction before any numbers go in.
- 5
Iterate in radians, carrying about twice the digits you will report.
- 6
Stop when is under the tolerance and is small; quote only the digits that have stopped changing.
Watch out
The mistakes that cost marks✗ Wrong
✓ Right
Why: On from the minus gives ; the plus gives , away from .
✗ Wrong
For , taking
✓ Right
, so .
Why: Newton finds zeros, not intersections — and the is easy to drop.
✗ Wrong
Rounding each to four decimals as you go
✓ Right
Carry ten digits through and round once at the end.
Why: Rounding caps the answer's accuracy no matter how many steps you take.
✗ Wrong
" is tiny, so is close to the root."
✓ Right
Check too.
Why: For at , but the error is .
✗ Wrong
To minimise , iterating
✓ Right
Run Newton on : .
Why: The first finds a root of , not a critical point.
✗ Wrong
"Newton's method always converges."
✓ Right
It can cycle, diverge, or converge to a different root — bracket first.
Quick check
Commit to an answer before you reveal one- Q1easy
Use Newton's method with and to approximate . Simplify the iteration first, then give , and to decimal places.
Hint
Put over the common denominator before any numbers go in.
Show answer
Answer
; , , .
Steps
, so
From : ; ; .
Against the errors are , , : the correct-digit count doubles each step. Report — the last digits of are not yet settled.
- Q2easy
(a) Derive Newton's iteration from the tangent line to at .
(b) State the hypothesis it needs, and say what goes wrong geometrically when it fails.
(c) Show that for with one step from any lands on the exact root.
Show answer
Answer
(a) . (b) ; a horizontal tangent never meets the axis. (c) .
Steps
(a) The tangent is . Setting gives , so
(b) That division needs . If the tangent is horizontal: it either misses the -axis entirely or is the axis, so there is no next iterate.
(c) , the exact root. Newton is exact on lines, so each step's whole error is the gap between and its tangent — a quantity of size .
- Q3medium
Let .
(a) Show has exactly one real root and that it lies in .
(b) Take two bisection steps and let be the midpoint of the surviving interval.
(c) Run two Newton steps from that , to decimal places.
Hint
For (b) you only need the signs of and .
Show answer
Answer
(a) and . (b) . (c) , .
Steps
(a) is continuous with and , so the IVT gives a root in ; makes strictly increasing, so there is at most one.
(b) , so the root is in ; , so it is in . Midpoint: .
(c) , , giving . Then , , giving . The root is — bisection alone would need steps for that accuracy.
- Q4medium
(a) Run Newton on from for two steps. What happens, and can the iteration ever escape?
(b) For , compute from and explain the size of the answer geometrically.
Show answer
Answer
(a) , : the -cycle , which never escapes. (b) — the tangent is almost horizontal, so it meets the axis about away.
Steps
(a) , so and . Since depends only on , a repeated value repeats forever; neither point is a root (, ).
(b) and , so
Climbing from height to the axis along a line of slope takes a run of about . Both failures are cured by bracketing the root first.
- Q5medium
Apply Newton's method to , where .
(a) Show the iteration simplifies to , which uses no division.
(b) Prove that exactly, where .
(c) With and , compute through .
Hint
, and dividing by is multiplying by .
Show answer
Answer
(c) , , , , against .
Steps
(a) , which is never , so
(b) .
(c) : , , then and — an error of , so correct decimals.
- Q6hard
Find the point on closest to .
(a) Write the function to minimise and turn the problem into a root-finding one.
(b) Bracket that root with the IVT.
(c) Run Newton to decimal places, then state the closest point and the distance.
Hint
Minimise the square of the distance, and remember a critical point of is a root of — so the step needs .
Show answer
Answer
; closest point , distance .
Steps
(a) , so and : is convex, so its single critical point is the global minimum. Since with , , iterate on .
(b) , so the root is in ; take .
(c) , , . Then and the distance is .
On the exam
How this topic is markedMarks live in the set-up: the equation moved to , the derivative, the simplified iteration, and one clean substitution. A bare final decimal with no working scores almost nothing.
Show each iterate with the and that produced it, carry ten digits, and quote only the digits that have stopped changing. Trig equations are in radians.
If the question asks you to justify that a root exists or is unique, that is an IVT sign change plus of constant sign — do it before you iterate, not after.
Keep going
Stuck on this topic?
One session with a tutor who teaches it every term usually settles it.
Book a session