Why does tan 45(0.7853981633974483 in radian) give me 0.9999? What's wrong with the following code?
System.out.println(Math.tan(Math.toRadians(45.0)) );
I don't think there's any typo in here.
So what's the solution here?
|
Why does
I don't think there's any typo in here. So what's the solution here? |
||||
|
Floating point calculations will often lead to such inaccuracies. The problem is that numbers cannot be accurately represented within a fixed number of bits. To give you another example (in decimal), we all agree that As further information, floating points on most systems are usually represented using the IEEE754 standard. You could search for it, or refer the Wikipedia page for more details. IEEE floating point |
|||||||||||||||||
|
|
The closest |
|||||||||
|
|
Use this
|
|||||||||||||||
|
|
That's probably because |
|||||
|
0.99999999999999989, regardless of the number of digits I feed into it. It's probably floating point and approximation error. – Blender Dec 8 '12 at 7:42