Show that Newton's method can be used to compute the square root function $\sqrt a$ using the formula
$$x_{n+1} = \frac{1}{2}\left(x_{n} + \frac{a}{x_{n}}\right)$$
show that the error is
$$\sqrt a - x_{n+1} = -\frac{1}{2x_{n}}\left(\sqrt a - x_{n}\right)^2$$
edit: As pointed out below $x^2-a$ has $\sqrt a$ as a root.
I have done as suggested below and plugged in $\sqrt a + \epsilon$ for $x_n$ giving me
$$x_{n+1} = \frac{2\epsilon\sqrt a + \epsilon^2}{2(\sqrt a + \epsilon)}$$ and once again not sure where to proceed.