I would like to know how to calculate first approximation in N-R division algorithm. I want to find the inverse of R. Here is the formula:
$x_{i+1} = x_{i}(2-R*x_{i})$
I'm trying to implement it in my program, so I need some algorithm to calculate $x_0$. Here is the example: https://www.youtube.com/watch?v=fBIQXHgj7j4
Thanks, for every kind of help.