A sequence is defined recursively in the following manner:
$$ x_0 = 2, x_{n+1} = x_n - \frac{x_n^2 -3}{2x_n}, n = 0, 1, 2, ...$$
Prove that the sequence converges. What does the sequence converge to?
Since the sequence is basically Newton's method for the function $f(x) = x^2 -3$, the sequence must converge to either $\sqrt3$ or -$\sqrt3$, but I'm not sure which one of them. I tried proving that the sequence converges using mathematical induction, but that didn't get me anywhere.
Can you prove that $x_n>0$ implies $x_{n+1}>0$, to rule out negative limits for $x_n$?