Say you want to calculate 1/R using Newton-Rapshon method. Then we let,
$$f(x) = 1/x - R$$
This means the root of the this function is at $f(1/R)$. So to find $1/R$, you can find the root of this function using Newton-Raphson method.
I got this part. Your first Newton-Raphson iteration would be:
$x_1 = x_0 + x(1-xR)$ as you know that $\frac{f(x)}{f'(x)}=-x(1-xR)$
Now I'd like to prove that the error satisfies:
$\frac{r-r_1}{r} = (\frac{r-r_0}{r})^2$
Where $r=1/R$
How can I prove this?
I found on Wikipedia:
https://en.wikipedia.org/wiki/Division_algorithm#Newton%E2%80%93Raphson_division
It says that the number of correct digits doubles each time. This should mean that the relative error is squared each time. So relative error of $r_1$ should be the square of relative error of $r_0$... So I should be able to prove this statement true.
We have $x_1 = x_0 + x_0\left(1-\frac{x_0}{r}\right)$, hence $r - x_1 = \frac{x_0^2}{r} - 2x_0 + r$, and $\frac{r - x_1}{r} = \frac{x_0^2 - 2x_0 r + r^2}{r^2}= \left(\frac{r-x_0}{r}\right)^2$.