up vote 6 down vote favorite
2
share [g+] share [fb]

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

6 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

You can solve the problem in two ways with out using the library function sqrt(...) defined in math.h header file.

Method 1 - Like binary search, have a minimum and maximum possible values. Do the square operation and compare the result. Then adjust minimum or maximum until we find the correct sqrt of the given number. NOTE: This is NOT a perfect square root and it has got accuracy of 4 decimal points. But it is the fastest way to find the square root. If you want faster method rather than accuracy, then you can proceed with this method.

Method 2 - The traditional way of doing with out calculator or any assumption is using the algorithm. It will be perfect square root up to N number of decimal points meaning the limitation of float and double.

http://www.softwareandfinance.com/Turbo_C/SQRT_Approx.html

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.