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
|
|
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
|