Newton Raphson Method Calculation

Assume the equation or functions whose roots are to be calculated as f(x) = 0.

In order to prove the validity of Newton Raphson method following steps are followed:

Step 1: Draw a graph of f(x) for different values of x as shown below:

Step 2: A tangent is drawn to f(x) at x0. This is the initial value.

Step 3:This tangent will intersect the X- axis at some fixed point (x1,0) if the first derivative of f(x) is not zero i.e. f'(x0) ≠ 0.

Step 4: As this method assumes iteration of roots, this x1 is considered to be the next approximation of the root.

Step 5: Now steps 2 to 4 are repeated until we reach the actual root x*.

Now we know that the slope-intercept equation of any line is represented as y = mx + c,

Where m is the slope of the line and c is the x-intercept of the line. 

Using the same formula we, get

y = f(x0) + f'(x0) (x − x0)

Here f(x0) represents the c and f'(x0) represents the slope of the tangent m. As this equation holds true for every value of x, it must hold true for x1. Thus, substituting x with x1, and equating the equation to zero as we need to calculate the roots, we get:

0 = f(x0) + f'(x0) (x1 − x0)

x1 = x0 – f(x0)/f'(x0)

Which is the Newton Raphson method formula.

Thus, Newton Raphson’s method was mathematically proved and accepted to be valid.

Convergence of Newton Raphson Method

The Newton-Raphson method tends to converge if the following condition holds true:

|f(x).f”(x)| < |f'(x)|2

It means that the method converges when the modulus of the product of the value of the function at x and the second derivative of a function at x is lesser than the square of the modulo of the first derivative of the function at x. The Newton-Raphson Method has a convergence of order 2 which means it has a quadratic convergence.

Note:

Newton Raphson’s method is not valid if the first derivative of the function is 0 which means f'(x) = 0. It is only possible when the given function is a constant function.

Newton Raphson Method

Newton Raphson Method or Newton Method is a powerful technique for solving equations numerically. It is most commonly used for approximation of the roots of the real-valued functions. Newton Rapson Method was developed by Isaac Newton and Joseph Raphson, hence the name Newton Rapson Method. 

Newton Raphson Method involves iteratively refining an initial guess to converge it toward the desired root. However, the method is not efficient to calculate the roots of the polynomials or equations with higher degrees but in the case of small-degree equations, this method yields very quick results. In this article, we will learn about Newton Raphson Method and the steps to calculate the roots using this method as well.

Table of Content

  • What is Newton Raphson Method?
  • Newton Raphson Method Formula
  • Newton Raphson Method Calculation
    • Convergence of Newton Raphson Method
    • Articles related to Newton Raphson Method:
  • Newton Raphson Method Example
  • Solved Problems of Newton Raphson Method

Similar Reads

What is Newton Raphson Method?

The Newton-Raphson method which is also known as Newton’s method, is an iterative numerical method used to find the roots of a real-valued function. This formula is named after Sir Isaac Newton and Joseph Raphson, as they independently contributed to its development. Newton Raphson Method or Newton’s Method is an algorithm to approximate the roots of zeros of the real-valued functions, using guess for the first iteration (x0) and then approximating the next iteration(x1) which is close to roots, using the following formula....

Newton Raphson Method Formula

In the general form, the Newton-Raphson method formula is written as follows:...

Newton Raphson Method Calculation

Assume the equation or functions whose roots are to be calculated as f(x) = 0....

Newton Raphson Method Example

Let’s consider the following example to learn more about the process of finding the root of a real-valued function....

Solved Problems of Newton Raphson Method

Problem 1: For the initial value x0 = 1, approximate the root of f(x)=x2−5x+1....

FAQs of Newton Raphson Method

Q1: Define Newton Raphson Method....

Contact Us