Project 12>square root--Name of square root algorithm

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Project 12>square root--Name of square root algorithm

kraftwerk1611
Hi,

Does the square root algorithm described in  TECS book page 252 has a name?

Thanks.
Reply | Threaded
Open this post in threaded view
|

Re: Project 12>square root--Name of square root algorithm

cadet1620
Administrator
I don't think that it has a specific name.

This is effectively an implementation of binary searching where the index into the dataset is x and the value at x is sqrt(x).

--Mark