Starting values for Newton's Method

habeebe

New member
Joined
Nov 2, 2011
Messages
2
Use Newton's method to find all the roots of the equation correct to six decimal places. 1x=1+x3\displaystyle \frac{1}{x}=1+x^3

In the problem I had prior to this, my resulting function was factorable into the form ab=0\displaystyle a*b=0, so I knew I had two roots, and could easily find starting values with the intermediate value theorem. With this problem, I worked my way up to f(x)=0=x4+x1=x(x3+1)1\displaystyle f(x)=0=x^4+x-1=x(x^3+1)-1. It looks like there are two roots, but the 1\displaystyle -1 is throwing me off. I am not sure how to get my two functions for the two seperate roots, and because of that I can't find my x1\displaystyle x_1's for either root.

How do I get to the next step?
 
Nevermind. I got there through a circuitous route involving finding the minimum and taking the the limit as x±\displaystyle x\to\pm\infty to prove that I had two roots.
 
Hi;
I don't know about the newton's method but as a simple way you can have this:
1/x = 1+x^3
x^4 + x -1 =0
y(1)= x^4
y(2)=1-x
by plotting y(1) and y(2) these two functions will cross eachother in just two points which are the roots of first equation.
 
Top