How is the square root function implemented?

link|improve this question
2  
How is it implemented where? – fenomas Aug 27 '10 at 5:40
Guess a number, if that is not the square root, guess another number... – Matt Ellen Aug 27 '10 at 8:01
@Matt: add "... but try to make a slightly better guess this time", and that's actually an accurate description! – Tom Anderson Aug 27 '10 at 9:39
feedback

5 Answers

There are lots of ways to compute the square root. Wikipedia has the details for a pseudo computer algo too. Are you looking for the implementation in a specific library or for a specific precision?

link|improve this answer
feedback

Square root is usually based on Newton's iterative method:

http://mathworld.wolfram.com/NewtonsIteration.html

link|improve this answer
feedback

Take a look here. It contains 13 C++ implementations of sqrt, together with speed and precision comparison.

link|improve this answer
The author of the article tries to measure the speed of the functions by averaging the time, which is good. It's just that it's implemented wrong. – Peter Stuifzand Aug 27 '10 at 9:22
feedback

On Intel hardware, it's often implemented on top of the hardware SQRT instruction. Some libraries just use the result of that straight off, some may put it through a couple of rounds of Newton optimisation to make it more accurate in the corner cases.

link|improve this answer
feedback

If you're interested, the Numerical Recipes book has lots on how to calculate square roots, sines and cosines, exponentials, logarithms, and so on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.