Question

In: Advanced Math

Find a root of an equation f(x)=5x3-3x2+8 initial solution x0=-0.81, using Newton Raphson method

Find a root of an equation f(x)=5x3-3x2+8 initial solution x0=-0.81, using Newton Raphson method

Solutions

Expert Solution

Approximate root of the equation 5x3-3x2+8=0 Let f(x)=5x3-3x2+8

 

 

ddx(5x3-3x2+8)=15x2-6x

 

 

∴f′(x)=15x2-6x

 

x0=-0.81

 

 

1st iteration :

 

f(x0)=f(-0.81)=5⋅(-0.81)3-3⋅(-0.81)2+8=3.3745

 

f′(x0)=f′(-0.81)=15⋅(-0.81)2-6⋅(-0.81)=14.7015

 

x1=x0-f(x0)f′(x0)

 

x1=-0.81-3.374514.7015

 

x1=-1.0395

 

 

2nd iteration :

 

f(x1)=f(-1.0395)=5⋅(-1.0395)3-3⋅(-1.0395)2+8=-0.8587

 

f′(x1)=f′(-1.0395)=15⋅(-1.0395)2-6⋅(-1.0395)=22.4467

 

x2=x1-f(x1)f′(x1)

 

x2=-1.0395--0.858722.4467

 

x2=-1.0013

 

 

3rd iteration :

 

f(x2)=f(-1.0013)=5⋅(-1.0013)3-3⋅(-1.0013)2+8=-0.0269

 

f′(x2)=f′(-1.0013)=15⋅(-1.0013)2-6⋅(-1.0013)=21.0461

 

x3=x2-f(x2)f′(x2)

 

x3=-1.0013--0.026921.0461

 

x3=-1

 

 

4th iteration :

 

 f(x3)=f(-1)=5⋅(-1)3-3⋅(-1)2+8=0

 

f′(x3)=f′(-1)=15⋅(-1)2-6⋅(-1)=21.0001

 

x4=x3-f(x3)f′(x3)

 

x4=-1-021.0001

 

x4=-1

 

 

Approximate root of the equation 5x3-3x2+8=0  is -1


root is-1

Related Solutions

GIVEN: COS(x) +3xe^-x=0 USING NEWTON RAPHSON METHOD Find: 1.) The POSITIVE ROOT USING X0=2 2.) THE...
GIVEN: COS(x) +3xe^-x=0 USING NEWTON RAPHSON METHOD Find: 1.) The POSITIVE ROOT USING X0=2 2.) THE NEGATIVE ROOT USING X0=-0.5 *STOPPING CRITERION ≤ 0.01% use radian mode in calcu and i dont want a program answers pls i need the manual method.
Using Newton-Raphson method, find the complex root of the function f(z) = z 2 + z...
Using Newton-Raphson method, find the complex root of the function f(z) = z 2 + z + 1 with with an accuracy of 10–6. Let z0 = 1 − i. write program c++ or matlab
Determine the root of f (x) = 10.5X² - 1.5X - 5 by using Newton Raphson...
Determine the root of f (x) = 10.5X² - 1.5X - 5 by using Newton Raphson method with x0 = 0 and perform the iterations until ɛa < 1.00%. Compute ɛt for each approximation if given the true root is x = 0.7652.
Let . If we use Accelerated Newton-Raphson method to approximate the root of the equation ,...
Let . If we use Accelerated Newton-Raphson method to approximate the root of the equation , which of the following(s) is/are ture: (I)  is multiple root of order (II) Accelerated Newton-Raphson formula is : (III) The sequence  obtained by the Accelerated Newton-Raphson method converge to the root  quadratically.
Implement in MATLAB the Newton-Raphson method to find the roots of the following functions. (a) f(x)...
Implement in MATLAB the Newton-Raphson method to find the roots of the following functions. (a) f(x) = x 3 + 3x 2 – 5x + 2 (b) f(x) = x2 – exp(0.5x) Define these functions and their derivatives using the @ symbol. For example, the function of part (a) should be f=@(x)x^3 + 3*x.^2 - 5*x + 2, and its derivative should be f_prime=@(x)3*x.^2 + 6*x - 5. For each function, use three initial values for x (choose between -10...
Use Bisection and Newton Raphson methods to find roof for the following equation manually. F(x)=x^2 –...
Use Bisection and Newton Raphson methods to find roof for the following equation manually. F(x)=x^2 – 5 = 0 ε = 0.01
Using Matlab, create a code that determines the highest real root of f(x)=x3-6x2+11x-6.1 using the Newton-Raphson...
Using Matlab, create a code that determines the highest real root of f(x)=x3-6x2+11x-6.1 using the Newton-Raphson method with x0=3.5 for three iterations. Verify that the process is quadratically convergent. I found the code to get the highest real root (root for three iterations = 3.0473), however, I do not know how to verify that it is quadratically convergent.
In Sciland code, use the Newton Method to find the root of f(x)=10-x^2 and tol =10^-5
In Sciland code, use the Newton Method to find the root of f(x)=10-x^2 and tol =10^-5
Consider the Newton-Raphson method for finding root of a nonlinear function ??+1=??−?(??)?′(??), ?≥0. a) Prove that...
Consider the Newton-Raphson method for finding root of a nonlinear function ??+1=??−?(??)?′(??), ?≥0. a) Prove that if ? is simple zero of ?(?), then the N-R iteration has quadratic convergence. b) Prove that if ? is zero of multiplicity ? , then the N-R iteration has only linear convergence.
Find the solution of the initial-value problem X′(t) = ( −8 −5 5 2 )X X0...
Find the solution of the initial-value problem X′(t) = ( −8 −5 5 2 )X X0 = ( 0 1)
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT