Newton-Raphson Method MCQ Quiz - Objective Question with Answer for Newton-Raphson Method - Download Free PDF

Last updated on Jun 12, 2025

Latest Newton-Raphson Method MCQ Objective Questions

Newton-Raphson Method Question 1:

The real root of the equation x3 − x − 5 = 0 lying between 1 and 2 after first iteration by Newton - Raphson method is _______, if initial approximation is taken as x0 = 2∈ [1, 2] : 

  1. 1.909 
  2. 1.904 
  3. 1.921 
  4. 1.940

Answer (Detailed Solution Below)

Option 1 : 1.909 

Newton-Raphson Method Question 1 Detailed Solution

The correct answer is option 1: 1.909

Key Points

We are given the equation:

f(x)=x3x5

Its derivative is:

f(x)=3x21

Initial approximation: x0=2

Newton-Raphson iteration formula is:

xn+1=xnf(xn)f(xn)

Step-by-step Calculation:

  • f(2)=2325=825=1
  • f(2)=3(2)21=121=11
  • x1=211120.0909=1.909

But this gives 1.909, which matches option 1.

However, options provided show 1.904 as correct (option 2), but mathematically, the correct value after first iteration is:

x1=1.909

Additional Information

  • The Newton-Raphson method converges quadratically near the root.
  • This method is highly efficient for equations with simple real roots.
  • Only one iteration gives an approximate root: 1.909

Hence, the correct answer is: option 1: 1.909

Newton-Raphson Method Question 2:

The real root of the equation x3 − x − 5 = 0 lying between 1 and 2 after first iteration by Newton-Raphson method is ________, if initial approximation is taken as x0 = 2 ∈ [1, 2] : 

  1. 1.909 
  2. 1.904 
  3. 1.921 
  4. 1.940

Answer (Detailed Solution Below)

Option 1 : 1.909 

Newton-Raphson Method Question 2 Detailed Solution

The correct answer is 1.909.

Key Points

  • The Newton-Raphson method is an iterative numerical method used to find the roots of a real-valued function.
  • Given a function f(x)" id="MathJax-Element-159-Frame" role="presentation" style="position: relative;" tabindex="0">f(x) and its derivative f(x)" id="MathJax-Element-160-Frame" role="presentation" style="position: relative;" tabindex="0">f(x) , the Newton-Raphson iteration formula is:
    xn+1=xnf(xn)f(xn)" id="MathJax-Element-161-Frame" role="presentation" style="text-align: center; position: relative;" tabindex="0">xn+1=xnf(xn)f(xn)
  • For the given equation f(x)=x3x5" id="MathJax-Element-162-Frame" role="presentation" style="position: relative;" tabindex="0">f(x)=x3x5 , we first need to compute its derivative:
    f(x)=3x21" id="MathJax-Element-163-Frame" role="presentation" style="text-align: center; position: relative;" tabindex="0">f(x)=3x21
  • Starting with the initial approximation x0=2" id="MathJax-Element-164-Frame" role="presentation" style="position: relative;" tabindex="0">x0=2 , we apply the Newton-Raphson iteration formula:
    x1=x0f(x0)f(x0)" id="MathJax-Element-165-Frame" role="presentation" style="text-align: center; position: relative;" tabindex="0">x1=x0f(x0)f(x0)
  • Substituting x0=2" id="MathJax-Element-166-Frame" role="presentation" style="position: relative;" tabindex="0">x0=2 :
    f(2)=2325=825=1" id="MathJax-Element-167-Frame" role="presentation" style="text-align: center; position: relative;" tabindex="0">f(2)=2325=825=1
    f(2)=3(22)1=3(4)1=121=11" id="MathJax-Element-168-Frame" role="presentation" style="text-align: center; position: relative;" tabindex="0">f(2)=3(22)1=3(4)1=121=11
    x1=2111=20.0909=1.909" id="MathJax-Element-169-Frame" role="presentation" style="text-align: center; position: relative;" tabindex="0">x1=2111=20.0909=1.909

Additional Information

  • The Newton-Raphson method is highly efficient and converges quickly if the initial approximation is close to the actual root.
  • It is important to ensure that the derivative f(x)" id="MathJax-Element-170-Frame" role="presentation" style="position: relative;" tabindex="0">f(x) is not zero at the initial approximation to avoid division by zero.
  • The method may fail to converge or converge to a different root if the initial approximation is not chosen carefully.

Newton-Raphson Method Question 3:

Let

f(x) = x+ 2x- 11x- 12x + 36 for x ∈ ℝ.

The order of convergence of the Newton-Raphson method

xn+1=xnf(xn)f(xn), n ≥ 0,

with x= 2.1, for finding the root α = 2 of the equation f(x) = 0 is ________.

Answer (Detailed Solution Below) 1

Newton-Raphson Method Question 3 Detailed Solution

Explanation:

f(x) = x+ 2x- 11x- 12x + 36 for x ∈ ℝ and we are finding the root α = 2using

the Newton-Raphson method xn+1=xnf(xn)f(xn)

The Newton-Raphson method typically has quadratic convergence, i.e., the error in the approximation

xn+1α| satisfies: xn+1α| = c|xnα|2

for some constant c > 0. provided f(α)0

f(x)=4x3+6x222x12

we have f(2) = 0 and f'(2) = 0

f(x)=12x2+12x -22

Thus f''(2) This indicates that the Newton-Raphson method will converge with linear order for this root.

The order of convergence of the Newton-Raphson method for finding the root
\alpha = 2
is 1.


\textbf{1 (Linear Convergence)}.

 

 

Newton-Raphson Method Question 4:

If a and (a + h) are two consecutive approximate roots of the equation f(x) = 0 obtained by Newton's method, then h is equal to.

  1. f(a)f(a)
  2. f(a)f(a)
  3. f(a)f(a)
  4. f(a)f(a)

Answer (Detailed Solution Below)

Option 4 : f(a)f(a)

Newton-Raphson Method Question 4 Detailed Solution

Concept:

Newton’s method or Newton-Raphson method:

It helps finds an approximate root of f(x) = 0 from a initial guess xn by approximating f(x) as its tangent line.

Successively, we get xn+1 = xnf(xn)f(xn)

Calculation:

Given, a and (a + h) are two consecutive approximate roots of the equation f(x) = 0 

Let xn = a and xn+1 = a + h 

∴ Using Newton's method, xn+1 = xn - f(xn)f(xn)

⇒ a + h = a - f(a)f(a)

⇒ h = f(a)f(a)

∴ The value of h is f(a)f(a).

The correct answer is Option 4.

Newton-Raphson Method Question 5:

While solving the equation x2 – 3x + 1 = 0 using Newton – Raphson method the initial guess of the root is as 1, then the value of the root will be?

  1. 1.5
  2. 1
  3. 0.5
  4. 0

Answer (Detailed Solution Below)

Option 4 : 0

Newton-Raphson Method Question 5 Detailed Solution

Concept:

Newton’s method or Newton-Raphson method:

It helps finds an approximate root of f(x) = 0 from a initial guess xn by approximating f(x) as its tangent line.

Successively, we get xn+1 = xn - f(xn)f(xn)

Calculation:

Given, f(x) = x2 – 3x + 1 and x0 = 1

∴ x1 = x0f(x0)f(x0)

= 1 - (1)23(1)+12(1)3

= 1 - 1 

= 0

∴ The value of root will be x = 0.

The correct answer is Option 4.

Top Newton-Raphson Method MCQ Objective Questions

The order of convergence of Newton Raphson method is

  1. 2
  2. 3
  3. 0
  4. 1

Answer (Detailed Solution Below)

Option 1 : 2

Newton-Raphson Method Question 6 Detailed Solution

Download Solution PDF

Order of convergence of the Newton Raphson method is two

Important Point

Order of convergence of various numerical methods

Method

Order of convergence

1. Newton-Bisection

1

2. False-position

1

3. Secant

1.62

4. Newton-Raphson

2

The approximate value of a root of x3 – 13 = 0, then 3.5 as initial value, after one iteration using Newton-Raphson method, is 

  1. 2.687
  2. 2.678
  3. 3.607
  4. 3.597

Answer (Detailed Solution Below)

Option 1 : 2.687

Newton-Raphson Method Question 7 Detailed Solution

Download Solution PDF

Concept:

Newton-Raphson Method:

The iteration formula is given by

xn+1=xnf(xn)f(xn)

Where x0 is the initial value/root of the equation f(x) = 0

Calculation:

Given:

f(x) = x- 13, x0 = 3.5

f'(x) = 3x2

f(x0) = f(3.5) = 3.53 - 13 = 29.875

f'(x0) = f'(3.5) = 3 × 3.52 = 36.75

We know that

xn+1=xnf(xn)f(xn)

x1=x0f(x0)f(x0)

x1=3.529.87536.75

∴ x1 = 2.6871

The function f(x) = ex – 1 is to be solved using Newton-Raphson method. If the initial value of x0 is taken as 1.0, then the absolute error observed at 2nd iteration is _______.

Answer (Detailed Solution Below) 0.05 - 0.07

Newton-Raphson Method Question 8 Detailed Solution

Download Solution PDF

Concept:

According to Newton-Raphson Method

Xn+1=Xnf(Xn)f(Xn)

Calculation:

f(x) = ex – 1

f’(x) = ex

x0 = 1

Iteration 1:

At x0 = 1, f(x) = 1.718

f'(x) = 2.718

x1=x0f(x0)f(x0)

=11.7182.718=0.3678

Iteration 2:

At x2 = 0.3678, f(x) = 0.4445

f'(x) = 1.4445

x2=x1f(x1)f(x1)

=0.36780.44471.4447=0.06005

By inspection, the actual solution for the given equation is, x = 0

Therefore, the error = 0.06005

The iterative formula to find the root of the equation f(x) = x3 - 5x + 7 = 0 by the Newton Raphson method is ______.

  1. xk+1=xk35x3xk2+7
  2. xk+1=2xk3+5x3xk2+7
  3. xk+1=2xk373xk25
  4. xk+1=xk3+5x73xk2+5

Answer (Detailed Solution Below)

Option 3 : xk+1=2xk373xk25

Newton-Raphson Method Question 9 Detailed Solution

Download Solution PDF

Concept:

Newton Raphson method:

The iteration formula is  xn+1=xnf(x)f(x)

Calculation:

Given

f(x)=x35x+7

xn+1=xnf(x)f(x)

f(x)=3x25

xk+1=xk(xk35x+73xk25) xk+1=3xk35xkxk3+5xk73xk25 ⇒ xk+1=2xk373xk25

 

Find the positive real root of x3 - x - 3 = 0 using Newton-Raphson method. If the starting guess (x0) is 2, the numerical value of the root after two iterations (x2) is __________ (round off to two decimal places).

Answer (Detailed Solution Below) 1.66 - 1.68

Newton-Raphson Method Question 10 Detailed Solution

Download Solution PDF

Concept:

According to the Newton-Raphson method:

xn+1=xnf(xn)f(xn)

where xn is starting guess.

Calculation:

Given:

f(x) = x3 - x - 3 

f(x)=3x21

Starting guess (x= 2)

Now first iterations

x1=x0(x03x03)3x021

x1=x0f(x0)f(x0)=2(2)3233(2)21=1.7273

Second iterations

x2=x1(x13x13)3x121

x1 = 1.7273

x2=x1f(x1)f(x1)=1.7273(1.7273)31.727333(1.7273)21=1.67369

x2 = 1.67 

The iteration formula to find the reciprocal of a given number N by Newton’s method is

  1. xi+1=xi(2Nxi)
  2. xi+1=xiNxi2
  3. xi+1=2Nxi
  4. xi+1=xi(2+Nxi)

Answer (Detailed Solution Below)

Option 1 : xi+1=xi(2Nxi)

Newton-Raphson Method Question 11 Detailed Solution

Download Solution PDF

Concept:

Newton-Raphson method: It has order of convergence 2 and number of guesses required is 1.

Iteration formula, xn+1=xnf(xn)f(xn)

Calculation:

Given, x=1N

Let f(x)=1xN

f(x)=1x2

xi+1=xi(1xiN1xi2)=xi+(1Nxixi)(xi2)

xi+1=xi(2Nxi)

If the equation sin (x) = x2 is solved by Newton Raphson’s method with the initial guess of x = 1, then the value of x after 2 iterations would be _______

Answer (Detailed Solution Below) 0.86 - 0.89

Newton-Raphson Method Question 12 Detailed Solution

Download Solution PDF

Concept:

Newton-Raphson method: It has an order of convergence 2 and the number of guesses required is 1.

Iterative formula is

xn+1=xnf(xn)f(xn)

Calculation:

Given:

Initial guess (x0) = 1; sin(x) = x2 ⇒ f(x) = x2 - sin(x);

f'(x) = 2x - cos(x)

First iteration (n = 0)

x1=x0f(x0)f(x0)

f(x) = x2 - sin(x) ⇒ f(x0) = x02 - sin(x0) = 1 - sin (1 × 180π) = 0.159

f'(x) = 2x - cos(x) ⇒ f'(x0) = 2x0 - cos(x0) = 2 - cos (1 × 180π) = 1.459

x1=x0f(x0)f(x0) = =10.1591.459

x1 = 0.891

Second Iteration (n = 1)

x2=x1f(x1)f(x1)

f(x) = x2 - sin(x) ⇒ f(x1) = x12 - sin(x1) = 0.8912 - sin (0.891 × 180π) = 0.0161

f'(x) = 2x - cos(x) ⇒ f'(x1) = 2x1 - cos(x1) = 1.782 - cos (0.891 × 180π) = 1.153

x2=x1f(x1)f(x1) =0.8910.01611.153​ 

x2 = 0.87


Mistake Points

All angles are in radians, convert them in degrees while calculating. 

Consider the following statements regarding the convergence of the Newton-Raphson procedure: 

1. It does not converge to a root when the second differential coefficient changes sign

2. It is preferred when the graph of (X) is nearly horizontal where it crosses the X-axis

3. It is used to solve algebraic and transcendental equations

Which of these statements are correct?

  1. 1, 2, and 3
  2.  1 and 2 only
  3. 2 and 3 only
  4. 1 and 3 only

Answer (Detailed Solution Below)

Option 4 : 1 and 3 only

Newton-Raphson Method Question 13 Detailed Solution

Download Solution PDF

Newton- Raphson method:

  • The Newton - Raphson method is the type of open method (Extrapolation method).
  • It is a powerful technique for solving algebraic and transcendental equations f( x ) = 0, numerically.
  • It is an iteration method for solving a set of various nonlinear equations with an equal number of unknowns.

Advantages:

  • It possesses quadratic convergence characteristics. Therefore, the convergence is very fast.
  • The number of iterations is independent of the size of the system.
  • The Newton-Raphson Method convergence is not sensitive to the choice of slack bus.
  • Overall, there is a saving in computation time since a fewer number of iterations are required.

Disadvantages:

  • It does not converge to a root when the second differential coefficient changes sign
  • It is sensitive to the starting value. Convergence fails if the starting point is not near the root.
  • It is not preferred when the graph of f(x) is nearly horizontal where it crosses the x-axis as the values of f’(x) have negative values in this case.

Newton-Raphton iteration formula for finding C3, where C > 0 is

  1. xn+1=2xn3+C33xn2
  2. xn+1=2xn3C33xn2
  3. xn+1=2xn3+C3xn2
  4. xn+1=2xn3C3xn2

Answer (Detailed Solution Below)

Option 3 : xn+1=2xn3+C3xn2

Newton-Raphson Method Question 14 Detailed Solution

Download Solution PDF

Concept:

For Newton-Raphson’s

xn+1=xnf(xn)f(xn)

Analysis:

Given,

xn=C3

xn3C=0

Let,

f(xn)=xn3C

taking derivative:

f(xn)=3xn2

∴ xn+1=xnxn3C3xn2

3xn3xn3+C3xn2

xn+1=2xn3+C3xn2

The equation x3 – x2 + 4x – 4 = 0 is to be solved using the Newton-Raphson method. If x = 2 is taken as the initial approximation of the solution, then the next approximation using the method will be

  1. 23
  2. 43
  3. 13
  4. 53

Answer (Detailed Solution Below)

Option 2 : 43

Newton-Raphson Method Question 15 Detailed Solution

Download Solution PDF

Concept:

According to Newton-Raphson Method

Xn+1=Xnf(Xn)f(Xn)

Calculation:

Given:

f(x) = x3 – x2 + 4x – 4

f’(x) = 3x2 – 2x + 4

Initial value x0 = 2

f(x0) = 8, f’(x0) = 12

x1=2812=43

Get Free Access Now
Hot Links: teen patti palace teen patti master real cash dhani teen patti