42th post
To calculate the root square of an N non complex/non negative number is simple, although the most natural method is rather time consuming.
- guess root
- calculate avarage on the guessed root and N/root
for (i = 0;   i   <=   20 ;   i++) {(;
     root   =   (root   +   N/root)/2;
}
<< Home