How many iterations must I do for getting $n$ signs after floating point in calculating square root by Newton's method
P.S Sorry for my bad English. Please mention to me where I've done mistakes. Thanks.
How many iterations must I do for getting $n$ signs after floating point in calculating square root by Newton's method
P.S Sorry for my bad English. Please mention to me where I've done mistakes. Thanks.
Wanting to decide on a particular number of iterations before you even start iterating is in general counterproductive.
Instead, simply start iterating, and stop when the difference between two successive approximations is small relative to the precision you need. Since Newton's method converges quadratically, the error in your current approximation will generally be less than the difference between the current and the previous approximation.
(This assumes you know you're somewhere near a root already. Otherwise you may wish, as a sanity check, to require that the successive differences have indeed been decreasing for the last handful of rounds).
Beware, though, that if your initial guess is off in a sufficiently unlucky way, the iteration may not converge at all, so for most practical applications you'll still need some absolute upper bound on the number of iterations, you're willing to do. But there's no need to try to make that upper bound precise.