Posted by Adam on Saturday, May 29, 2010 at 8:36pm.
y = x^3 + x + 3
Xn+1 = Xn - Yn/y'
where here
y' = 3Xn^2 +1
X1 = -1
Y1 = -1-1+3 = 1
y'= 3+1 = 4
X2 = X1 - Y1/(3X1^2+1)
X2 = -1 - 1/4 = -1.25
now do X3
im not very clear on the steps of newton's method because my professor didnt explain it very well. Do you just take the second derivative of y and then plug in -1.25 to find x3. I dont quite understand the concept...thanks for the help in advance.
You're right Adam, just plug -1.25 to find X3.
So...you know...
y=x^3+x+3
y'=3x^2+1
Xn=-1
The equation you use is:
Xn+1 = Xn- (f(Xn)/f'(Xn))
So for:
X2=(-1)- ( ((-1)^3+(-1)+3)/ (3(-1)^2+1))
X2= (-1)- (1/4)
X2= -1.25
Then...
X3=(-1.25)- ( ((-1.25)^3+(-1.25)+3)/ (3(-1.25)^2+1))
X3=(-1.25)-(-1/28)
X3=-1.214285714
Related Questions
calculus - Use Newton's method to approximate a root of the equation 3sin(x...
Math - Use Newton's method to approximate a root of the equation 5sin(x)=x ...
calculus - Use Newton's method to approximate a root of the equation 3sin(x...
calculus - Use Newton's method to approximate a root of the equation 3sin(x...
calculus, math - Use Newton's method to approximate the value of (543)^(1/5...
Calculus - Use Newton's method to approximate a root of the equation (2 x^3...
Calculus 1 Newton's Method - Using Newton's method, approximate the root...
Calculus 1 - Use Newton's method to approximate the root of the equation x^3...
Math- Calculus - Use Newtonâs Method with initial ...
calculus - Use Newton's method to solve the equation sec x = 4 in the ...
For Further Reading