4.1.33 · D1Calculus I — Limits & Derivatives

Foundations — Newton-Raphson method for root finding

2,948 words13 min readBack to topic

Before you can walk with the parent note, you must own every symbol it uses without apology. This page lists each one from absolute zero — plain meaning, the picture it lives in, and why the method cannot work without it.


1. The two axes: and

  • Plain words: = "how far across", = "how high up".
  • Picture: graph paper with a horizontal line () and a vertical line () crossing at the origin .
  • Why the topic needs it: every curve, tangent, and root below lives on this plane, so we fix the two labels once, right at the start, before any of them appear.

2. The function and the equation

  • Plain words: " goes in, a height comes out."
  • Picture: a wiggly curve drawn over the -axis; its up–down position at each is the value read off the -axis.
  • Why the topic needs it: the whole game is "solve ". Without a function there is nothing to zero out.
Figure — Newton-Raphson method for root finding

Why "" and not ""? Any equation can be rearranged so one side is zero. Solving is the same as solving . So "find where the curve meets the axis" is the universal shape of every equation. That is why the method targets zero specifically.


3. The guess and the subscript

  • Plain words: is a list of guesses, each hopefully better than the last.
  • Picture: a row of dots marching along the -axis, creeping toward the root.
  • Why the topic needs it: Newton-Raphson is a repeated process. We need names to talk about "the current guess " versus "the next guess ". The counter lets one formula describe every step at once.

4. Height: — how far from zero we are

  • Picture: a vertical line from the guess on the axis up (or down) to the curve. That segment's signed length is .
  • Why the topic needs it: it is the thing we want to drive to zero, and it becomes the top of the fraction in the formula.

5. Slope, the limit, and the derivative

This is the tool the parent note leans on hardest, so we build it with full care.

  • Picture: a right triangle riding on the line — horizontal leg , vertical leg . A steep line has a tall triangle; a flat line has a short one.

But a curve is not straight — its steepness changes from place to place. So what is the slope at a single point?

  • Plain words: "keep making tinier and watch what number the answer approaches."
  • Picture: the second point on the curve sliding toward the first; the chord between them tilting toward one settled tilt.
Figure — Newton-Raphson method for root finding
  • Plain words: the derivative answers "how steep is the curve at exactly this spot?"
  • Why the topic needs it: Newton-Raphson replaces the curve by the tangent line, and a line is fixed once you know one point plus its slope. is that slope. It becomes the bottom of the fraction .

6. The tangent line — the star of the method

Figure — Newton-Raphson method for root finding
  • Picture: a ruler laid against the curve touching at one point, matching the curve's lean.
  • Why the topic needs it: near the touch point the tangent and the curve are almost identical (this is Tangent line and linear approximation). So the tangent's own zero is a great stand-in for the curve's zero — and a line's zero is easy to find exactly.

7. Finding where a line hits zero — and the Newton update

Taking the tangent and putting :

Now add to both sides to get the guess by itself — this is the standard Newton-Raphson update the parent note uses:

Figure — Newton-Raphson method for root finding
  • Plain words: the ratio is the horizontal distance the tangent travels to drop from height down to the axis. Height divided by steepness = how far sideways to reach zero. The new guess is "old guess minus that jump".
  • Why the minus sign? If the curve is above the axis () and rising (), you must step left (backwards) to reach zero — the minus does that. Every sign combination works out the same way; test them:

8. Tolerance and the stop rule

  • Picture: a thin band of width hugging the root; once your dot lands inside the band, you quit.
  • Why the topic needs it: the true root usually has infinite decimals, so we can never land exactly on it. tells the process when "practically there" counts as done.

9. The true root , and

  • Picture: a fixed green mark on the axis (that's ); the distance from your marching dot to that mark is the error.
  • Plain words: if your current error is , the next error is around — the number of correct digits roughly doubles each step.
  • Why the topic needs it: this is the payoff line of the whole method, explained fully via Taylor series. Here you only need to read the symbol, now that has a name.

10. When is the method trustworthy? (convergence conditions)

  • Why the topic needs it: these are the fine print behind every "it converges" claim. The parent note's misbehaving Example 3 breaks condition 3; its double-root warning is condition 2; its "guard against tiny " advice protects condition 2 and the flat-tangent case from Section 7.

Prerequisite map

hosts

zero of it

evaluate at guess

labels

limit of

defines

y used in

gives slope for

builds

set y equals zero

top of fraction

bottom of fraction

solve for guess

repeat until

target of

measures error of

explains speed of

guarantee

Two axes x across and y up

Function f and its curve

Root where f equals zero

Guess x sub n with counter n

Height f of x sub n error signal

Slope rise over run

Limit shrink delta x to zero

Derivative f prime slope at a point

Tangent line kisses curve

Point slope form of a line

Line crosses zero gives jump f over f prime

Newton update x sub n plus one

Tolerance epsilon stop rule

True root r and error

Big O of error squared

Convergence conditions


Equipment checklist

Test yourself — cover the right side and answer aloud.

What do the -axis and -axis stand for?
= horizontal position (how far across), = height (how far up); a point is .
What does mean in plain words?
A machine: put in , get out one height ; its graph is a curve.
What is a root, and what does it look like?
An with ; a point where the curve crosses the horizontal axis.
Why do we always rearrange to ?
Any equation can be moved so one side is zero, making "curve meets axis" the universal target.
What does the subscript in mean?
A counter labelling the guesses — not multiplication.
What does represent geometrically?
The signed height of the curve above/below the axis at the current guess.
What is slope ("rise over run")?
Change in height divided by change in : .
What does mean in words?
The value the expression settles down to as shrinks toward without ever being .
What is the derivative in one sentence?
The slope of the curve at a single point — the slope of the line you see when you zoom in.
Why take a limit as ?
To turn the average slope over a chord into the exact slope right at one point.
What is the tangent line?
The straight line touching the curve at one point with the same slope there.
Write point–slope form of a line.
.
Write the standard Newton-Raphson update.
.
What does measure?
The horizontal distance the tangent travels to fall from its height to the axis.
Why is the update a minus, not a plus?
The minus steps you toward the axis in every sign case; a plus would move you away.
What breaks the method when ?
The tangent is flat and never reaches the axis — division by zero, no next guess.
What does (tolerance) do?
Sets "close enough"; you stop when or .
What does (absolute value) mean?
Distance from zero, ignoring sign.
What does stand for, and what is the error?
is the true exact root (); the error at step is .
What does tell you?
The next error is at most a constant times the square of the current error — digits double.
What three conditions make Newton-Raphson reliable?
differentiable near ; simple root ; starting guess close enough to .

Connections

  • Tangent line and linear approximation — the tangent is the method's whole engine.
  • Derivatives — definition and rules — how the slope is actually computed.
  • Taylor series — where quadratic convergence and the symbol come from.
  • Fixed-point iteration — the "repeat a guess" pattern generalised.
  • Bisection method — the safe fallback when .
  • Roots of polynomials — a common place these functions come from.