You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
This lesson covers the Newton-Raphson method for finding roots of equations — as required by the Edexcel A-Level Mathematics specification (9MA0). You need to know the formula, understand how it works, recognise when it fails, and compare it with other numerical methods.
The Newton-Raphson method uses the following iteration formula:
x_{n+1} = x_n - f(x_n) / f'(x_n)
Starting from an initial estimate x₀, this generates a sequence x₁, x₂, x₃, ... that (usually) converges rapidly to a root of f(x) = 0.
At each step, the method:
The tangent at (x_n, f(x_n)) has equation: y - f(x_n) = f'(x_n)(x - x_n)
Setting y = 0 (x-axis crossing): -f(x_n) = f'(x_n)(x - x_n) x = x_n - f(x_n)/f'(x_n)
This is the Newton-Raphson formula.
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.