72.7k views
4 votes
Starting with x1 = 2, find the third approximation x3 to the root of the equation x3 − 2x − 2 = 0.

User Kelvincer
by
4.8k points

1 Answer

6 votes

Answer:

0.8989

Explanation:

Using the Newton's Raphson approximation formula.

Xn+1 = Xn - f(Xn)/f'(Xn)

Given f(x) = x³-2x+2

f'(x) = 3x²-2

If the initial value X1 = 2

X2 = X1 - f(X1)/f'(X1)

X2 = 2 - f(2)/f'(2)

f(2) = 2³-2(2)+2

f(2) = 8-4+2

f(2) = 6

f'(2) = 3(2)²-2

f'(2) = 10

X2 = 2- 6/10

X2 = 14/10

X2 = 1.4

X3 = X2 - f(X2)/f'(X2)

X3 = 1.4 - f(1.4)/f'(1.4)

f(1.4) = 1.4³-2(1.4)+2

f(1.4) = 2.744-2.8+2

f(1.4) = 1.944

f'(1.4) = 3(1.4)²-2

f'(1.4) = 3.880

X3 = 1.4- 1.944/3.880

X3 = 1.4 - 0.5010

X3 = 0.8989

Hence the value of X3 is 0.8989

User Prabodhprakash
by
4.6k points