I'm trying something that I thought should be reasonably simple. I have an angle, a position and a distance and I want to find the X,Y co-ordinates from this information.

With an example input of 90 degrees I convert the value to radians with the following code:

public double DegreeToRadian(float angle)
{
  return Math.PI * angle / 180.0;
}

This gives me 1.5707963267949 radians Then when I use

Math.Cos(radians)

I end up with an an answer of: 6.12303176911189E-17

What the heck is going on? The cosine of 90 degrees should be 0, so why am I getting such a deviance... and more importantly how can I stop it?

link|improve this question
That definitely rounds to 0. Use a format specifier when you convert the value to a string so the user sees it the way they expect. – Cody Gray May 21 '11 at 15:19
Ok, I take the point that the lack of precision is due to the lack of precision in the floating point types, but how does something like Windows Calculator manage to get the answer dead on, does it just cheat and use a lookup table? – elaverick May 21 '11 at 15:45
@elaverick - who says the Windows Calculator is using .Net doubles (it isn't), or any floating point type (it isn't). And who says that it's outputting the precise results of a calculation rather than applying sane rounding rules? – Damien_The_Unbeliever May 21 '11 at 15:48
1  
Calculator was completely rewritten a few years ago to use arbitrary-precision arithmetic in response to precisely such bugs. – Cody Gray May 21 '11 at 15:49
Thanks to everyone that offered answers to this, turns out my visualisation for the data was wrong so I had assumed that it must be due to the level of accuracy offered by the maths. I guess that'll teach me to actually read the output rather than just making assumptions on what it's saying. – elaverick May 21 '11 at 16:19
show 1 more comment
feedback

3 Answers

up vote 8 down vote accepted

Let me answer your question with another one: How far do you think 6.12303176911189E-17 is from 0? What you call deviance is actually due to the way floating point numbers are internally stored. I would recommend you reading the following article. In .NET they are stored using the IEEE 754 standard.

link|improve this answer
feedback

See answers above. Remember that 6.12303176911189E-17 is 0.00000000000000006 (I may have even missed a zero there!) so it is a very, very small deviation.

link|improve this answer
feedback

Read up on floating point arithmetic. It is never and can never be exact. Never compare exactly to anything, but check whether the numbers differ by a (small) epsilon.

link|improve this answer
1  
It sometimes is exact. Just not all the time. – Henk Holterman May 21 '11 at 15:21
It's precisely as exact as anything else in a computer that isn't using randomness. The problem is the general fixation of most people (including computer programmers) with decimal representations. – Damien_The_Unbeliever May 21 '11 at 15:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.