Using Newtons Method, I am to try to approximate the point R where the graphs of
$y = e^{-x}$ and $y = ln(1 + x)$
First I was supposed to propose a function, f(x) for which the method can be used, and using methods taught I came up with the function
$f(x) = e^{-x} - ln(1 + x)$
However, now I am to propose an initial approximation, $x_0$, so that I am able to guarantee convergence, and this is where I am stumped. I have tried $X_0$ = 0, 1, .5, -1... and have been unsuccessful because when using Newtons method every initial guess I have goes on to infinity. Can someone clear this up for me?
That's a good choice for $f$. You're required to show that Newton's method is guaranteed to converge? That's ordinarily quite a tall order; one sufficient set of conditions that will guarantee this is to show that, on some interval $I = [a,b]$,
Luckily, it is fairly easy to pick $I$ and verify all of these conditions for your particular function.
EDIT: More explicit hints. Well, let's take a look at where each of these conditions is satisfied.
So now we just need to check that $f$ has at least one root on $(-1,\infty)$. This basically boils down to guess and check: we can try $a=0$ which gives $f(0) = 1$ and clearly $f(x) < 0$ for $x$ sufficiently large. So any initial guess on $(-1,\infty)$ is guaranteed to converge.