Newton-Raphson Method
Newton-Raphson Method
The Newton-Raphson Method is a different method to find approximate roots. The method requires you to differentiate the equation you’re trying to find a root of, so before revising this topic you may want to look back at differentiation to refresh your mind.
Using the Newton-Raphson Method
Finding roots of an equation in the form , requires you to find and then use the following formula:
This method iteratively finds the -intercept of the tangent to the graph of at and then uses this value as .
Why the Newton-Raphson Method Can Fail
- Similar to other iteration formulas, if your starting point of is too far away from the actual root, the Newton-Raphson method may diverge away from the root.
- The Newton-Raphson method can also fail if the gradient of the tangent at is close or equal to . This is shown in the diagram below, where the tangent has a gradient very close to , so the point where it meets the -axis will be very far away from the root, so the sequence of iterations may diverge.
- Furthermore, if the tangent at a point on is horizontal, i.e. is a stationary point, then the Newton-Raphson method will fail. This is because the tangent will never meet the -axis, so there will be no further iterations. In addition to this, the tangent is horizontal when , so the formula would not work as you cannot divide by .
Example: The Newton Raphson Method
Find a root of the equation to decimal places using
First we need to differentiate :
Substituting this into the Newton-Raphson formula:
Starting with :
Using the formula again to find the following iterations:
Thus a root of is to decimal places.
Newton-Raphson Method Example Questions
Question 1: Use the Newton-Raphson method with , to find a root of the equation to decimal places.
[4 marks]
Firstly we need to differentiate
Now we need to apply the Newton-Raphson formula, starting with :
So a root of is to decimal places.
Question 2: Use the Newton-Raphson method with , to find a root of the equation to significant figures.
[5 marks]
Firstly, we need to rearrange the equation so it is in the form :
Then we need to differentiate , to do this we will need to use the product rule:
Now we need to apply the Newton-Raphson formula starting with :
So the root of is to significant figures.
Question 3: Explain why starting with for the equation will fail when using the Newton-Raphson method.
[2 marks]
Differentiating :
Substituting in :
Thus, the Newton-Raphson method will fail because you cannot divide by
Specification Points Covered
I2 – Solve equations using the Newton-Raphson method and other recurrence relations of the form ; understand how such methods can fail
I4 – Use numerical methods to solve problems in context