Newton-Raphson Method
Clarity Series
August 2, 2025
The Core Concept
Imagine you’re playing a guessing game. The goal is to find a secret number (x) that makes a
formula’s output equal to zero.
You make your first guess. The game gives you two clues:
1. How far your guess is from the right answer (this is the function’s value, f (x)).
2. A ”hot or cold” hint telling you which direction to adjust your guess (this is the slope, or
derivative, f ′ (x)).
The Newton-Raphson method is the ultimate strategy for this game. It’s a formula that uses
both clues to make a super-smart next guess, getting you to the secret number with incredible
speed. Each guess gets you exponentially closer to the ”zero” point.
The Toolkit
To use the Newton-Raphson method, you only need one main formula and a couple of conditions.
The Formula
The heart of the method is this iterative formula:
f (xn )
xn+1 = xn −
f ′ (xn )
Let’s break it down:
1
, • xn is your current guess for the root.
• xn+1 is the next, improved guess that you are calculating.
• f (xn ) is the value of the function at your current guess.
• f ′ (xn ) is the value of the function’s derivative (the slope) at your current guess.
You simply repeat this calculation, and each new guess gets you closer to the real answer.
The Conditions
For the method to work reliably, we need a few things:
1. A Good Starting Guess (x0 ): The method needs a place to start. The closer your initial
guess is to the actual root, the faster it will work.
2. A Differentiable Function: The function f (x) must be ”smooth” enough to have a
derivative, otherwise we can’t find the slope!
3. Non-Zero Derivative: The derivative f ′ (xn ) can’t be zero at any of your guesses. If it
is, you’d be dividing by zero in the formula, which is impossible. This would happen if you
land on a flat spot (a local maximum or minimum).
Guided Walkthrough
Example 1: Use the Newton-Raphson method to find a root of the equation f (x) =
x3 − 2x − 5. Start with an initial guess of x0 = 2. Perform three iterations.
Solution:
1. Identify the function and its derivative.
Our function is f (x) = x3 − 2x − 5. First, we need to find the derivative (our
’slope-finder’):
f ′ (x) = 3x2 − 2
2. State the initial guess.
We are given the starting point: x0 = 2.
3. Perform Iteration 1.
We use the main formula x1 = x0 − ff′(x 0)
(x0 )
. First, let’s calculate the two parts of the
fraction.
2