Tagged Questions
13
votes
12answers
1k views
Why do most programming languages only give one answer to square root of 4?
Most programming languages give 2 as the answer to square root of 4. However, there are two answers: 2 and -2. Is there any particular reason, historical or otherwise, why only one answer is usually ...
8
votes
4answers
165 views
How to improve fixed point square-root for small values
I am using Anthony Williams' fixed point library described in the Dr Dobb's article "Optimizing Math-Intensive Applications with Fixed-Point Arithmetic" to calculate the distance between two ...
-1
votes
3answers
233 views
sqrt turn out to be 4.9999 , instead of 5 [closed]
Possible Duplicate:
Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?
sqrt(25.0)
turns out to be 4.99999 ,instead of 5
how would I fix this ...