Q.30 Consider a nonlinear algebraic equation, π‘₯𝑙𝑛π‘₯ + π‘₯ βˆ’ 1 = 0. Using the NewtonRaphson method, with the initial guess of π‘₯0 = 3, the value of π‘₯ after one iteration (rounded off to one decimal place) is __________.

Q.30 Consider a nonlinear algebraic equation, π‘₯𝑙𝑛π‘₯ + π‘₯ βˆ’ 1 = 0. Using the NewtonRaphson method, with the initial guess of π‘₯0 = 3, the value of π‘₯ after one
iteration (rounded off to one decimal place) is __________.

Newton-Raphson Method: Solve x ln x + x βˆ’ 1 = 0

The Newton-Raphson method applied to the nonlinear equation
x ln x + x βˆ’ 1 = 0 with initial guess x0 = 3
yields x1 = 1.3 after one iteration, rounded to one decimal place.

Newton-Raphson Formula

The Newton-Raphson iteration is:

xn+1 = xn βˆ’ f(xn) / f'(xn)

For the given function:

  • f(x) = x ln x + x βˆ’ 1
  • f'(x) = ln x + 2

Step-by-Step Calculation

At x0 = 3:

  • ln 3 β‰ˆ 1.0986
  • f(3) = 3(1.0986) + 3 βˆ’ 1 = 5.2958
  • f'(3) = 1.0986 + 2 = 3.0986

Thus:

x1 = 3 βˆ’ (5.2958 / 3.0986) β‰ˆ 3 βˆ’ 1.709 = 1.291 β‰ˆ 1.3

Why This Answer?

GATE BT 2022 requires only one Newton step from x0 = 3,
rounded to one decimal place.

Actual root lies near 0.5, but more iterations are needed to reach it.

Β 

Leave a Reply

Your email address will not be published. Required fields are marked *

Latest Courses