I can try to explain Newton's Method, but you say in the comments that you don't know what the derivative of a degree four polynomial is. That might be make things hard. In any case let's try. If the given (degree four) polynomial is
$$ F(x) = ax^4 + bx^3 + cx^2 + dx + e,$$
then its derivative is $$ F'(x) = 4ax^3 + 3bx^2 + 2cx + d.$$
So far so good.
Newton's Method is a way to approximate a solution for the equation $F(x)=0$. It's done by first making a guess, then iterating a particular procedure that takes as input your guess, and outputs another guess that's perhaps closer to the actual solution. If you do it enough times, you might approximate the solution very well. Your assignment is try this process with various guesses and test how well the method works.
Here's the geometric idea behind Newton's method. Suppose your guess, i.e. the initial value for the process, is $x_0$. Then probably $F(x_0)$ is not zero (if it were, you'd be done). Geometrically, this means that if you draw the graph of $F(x)=y$, then the point $(x_0,F(x_0))$ is not on the $x$-axis. Now Newton's method is to draw the tangent line to the curve $F(x)=y$ at the point $(x_0,F(x_0))$ and see where it intersects the $x$-axis. That value of $x$ is the 'next' guess, i.e. $x_1$. Then you do the process again for $x_1$ instead of $x_0$ and you get $x_2$, and so on. The idea is that unless something goes wrong these numbers will converge to a solution. Here's a picture I found by google imaging 'Newton's method'.

You can see how $x_0$, $x_1$ and $x_2$ are creeping closer to the point where the graph intersects the $x$-axis.
Alright so what's the formula for this process? If $y_0 = F(x_0)$, the line tangent to the curve at $F(x)=y$ at $(x_0,y_0)$ will have slope $F'(x_0)$, almost by definition of what the derivative is. So the equation of the tangent line is:
$$\frac{Y-y_0}{X-x_0} = F'(x_0).$$
Now we are looking for where this line crosses the $x$-axis, i.e. the point $(x_1,0)$, so we solve
$$\frac{-y_0}{x_1-x_0} = F'(x_0) \Longrightarrow x_1 - x_0 = \frac{-y_0}{F'(x_0)}$$
$$ \Longrightarrow x_1 = x_0 - \frac{y_0}{F'(x_0)},$$
so that $$x_1= x_0 - \frac{F(x_0)}{F'(x_0)}.$$
This is the iteration formula we want. In general we will have:
$$x_{i+1} = x_i - \frac{F(x_i)}{F'(x_i)}.$$
So in principle one does this over and over until the answers start to get closer and closer, i.e. until $\left|x_{i+1} - x_i\right| = \left|\frac{F(x_i)}{F'(x_i)}\right|$ starts to become very small, in which case we have an approximation for the root of $F(x)=0$.
In reality a couple of things could go wrong. One is that you might hit on a value of $x_i$ that makes $F'(x_i)$ zero. Then the iteration formula is dividing by zero, and so it fails. Geometrically this translates to when the tangent line at $(x_i,F(x_i))$ is flat, so it never hits the $x$-axis. If this happens, one needs to start over with a new value of $x_0$. In your assignment you're asked to just record this fact and move on. Note that in practice since everything is an approximation, e.g. for you when you write the program, $F(x_i)=0$ means $F(x_i)$ is very very close to zero (how close is enough is described for you in the statement of the problem.)
There's another way things could go wrong and that's if the values $x_1,x_2,x_3,...$ don't converge to some fixed value at all. They could for example oscillate back and forth between $-1$ and $1$ and keep going that way. In this case you'd also have to stop and try another initial value guess. In your problem it says do this after 50 iterations doesn't give you an approximation.
That's about it. I hope it's helpful.
Newton's method essentially does what this gif animates.
– BeaumontTaz Sep 10 '14 at 08:38