How is the square root function implemented?
feedback
|
|
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? | |||
|
feedback
|
|
Square root is usually based on Newton's iterative method: | |||
|
feedback
|
|
Take a look here. It contains 13 C++ implementations of sqrt, together with speed and precision comparison. | |||
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. | |||
|
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. | |||
|
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. | |||
|
feedback
|