vote up 1 vote down star
1

Consider this:

double x,y;
x =120.0;
y = 0.05;

double z= x % y;

I tried this and expected the result to be 0, but it came out 0.04933333.

However,

x =120.0;
y = 0.5;
double z= x % y;

did indeed gave the correct result of 0.

What is happening here?

I tried Math.IEEERemainder(double, double) but it's not returning 0 either. What is going on here?

Also, as an aside, what is the most appropriate way to find remainder in C#?

flag
It would be interesting to know what you're trying to achieve. Using modulus with floating point numbers is never a good idea as the answers already state. – VVS May 25 at 12:53

6 Answers

vote up 0 vote down

I believe if you tried the same with decimal it would work properly.

link|flag
vote up 0 vote down

Modulus should only be used with integer. The remainder come from an euclidean division. With double, you can have unexpected results.

See this article

link|flag
you could safely use modulus with decimals. – Stefan Steinegger May 25 at 13:06
vote up 1 vote down

You could do something like:

double a, b, r;

a = 120;
b = .05;

r = a - Math.floor(a / b) * b;

This should help ;)

link|flag
Simple solution :-) – Stefan Steinegger May 25 at 13:08
vote up 0 vote down

Modulus is defined in msdn as:

x - (x / y) * y

If you do it this way manually it seems to get the correct result.

link|flag
why should this return the correct result? If y is an inexact value, this produces the same error. – Stefan Steinegger May 25 at 13:08
You have to include floor for floating point numbers - this works only with '/' performing an integer division. – Daniel Brückner May 25 at 13:27
Not sure why this "should" work, but it does with the 2 doubles provided in the example. – Cookey May 25 at 21:40
vote up 0 vote down

http://en.wikipedia.org/wiki/Floating_point#Accuracy_problems can help you understand why you get these "strange" results. There's a particular precision that floating point numbers can have. Just try these queries and have a look at the results:

0.5 in base 2

0.05 in base

link|flag
vote up 8 vote down

doubles are never exact values. 120 is probably stored lossless, but 0.05 not. 0.5 is 1/2, so it could be stored lossless and you don't get a rounding error.

To have exact (decimal) numbers, use decimal instead.

decimal x,y;
x =120.0M;
y = 0.05M;

decimal z = x % y;  // z is 0
link|flag

Your Answer

Get an OpenID
or

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