vote up 4 vote down star
1

According to the documentation, the decimal.Round method uses a round-to-even algorithm which is not common for most applications. So I always end up writing a custom function to do the more natural round-half-up algorithm:

public static decimal RoundHalfUp(this decimal d, int decimals)
{
    if (decimals < 0)
    {
        throw new ArgumentException("The decimals must be non-negative", "decimals");
    }

    decimal multiplier = (decimal)Math.Pow(10, decimals);
    decimal number = d * multiplier;

    if (decimal.Truncate(number) < number)
    {
        number += 0.5m;
    }
    return decimal.Round(number) / multiplier;
}

Does anybody know the reason behind this framework design decision? Is there any built-in implementation of the round-half-up algorithm into the framework? Or maybe some unmanaged Windows API?

It could be misleading for beginners that simply write decimal.Round(2.5m, 0) expecting 3 as a result but getting 2 instead.

flag

3  
Rounding up is not "more natural." Nature has nothing to do with it. It's simply what you learned in gradeschool when you learned the concept of "rounding." Gradeschool lessons don't always paint a full picture. – Rob Kennedy Nov 22 '08 at 20:23

4 Answers

vote up 8 vote down check

Probably because it's a better algorithm. Over the course of many roundings performed, you will average out that all .5's end up rounding equally up and down. This gives better estimations of actual results if you are for instance, adding a bunch of rounded numbers. I would say that even though it isn't what some may expect, it's probably the more correct thing to do.

link|flag
vote up 8 vote down

While I cannot answer the question of "Why did Microsoft's Designers Choose this as the default?", I just want to point out that an extra function is unnecessary.

Math.Round allows you to specify a MidpointRounding:

  • ToEven
    • When a number is halfway between two others, it is rounded toward the nearest even number.
  • AwayFromZero
    • When a number is halfway between two others, it is rounded toward the nearest number that is away from zero.
link|flag
2  
And as I've mentioned in related threads, make sure that you're consistent in your rounding - if you sometimes do rounding in the database, and sometimes in .net, you will have strange, one cent errors that will take you weeks to figure out. – chris Mar 6 at 19:10
vote up -3 vote down

Michael,

I am aware of the MidpointRounding enum but how about this:

decimal.Round(72.445m, 1, MidpointRounding.AwayFromZero)

I would expect 72.5, but the result is 72.4

link|flag
Whoa. Yes, that is indeed quite messed up, i would expect 72.5 as well. – Michael Stum Nov 22 '08 at 20:06
decimal.InternalRoundFromZero is making my head explode, but it seems to apply ToEven to all fractions until the desired one. I.e. 72.445 becomes 72.44 (rounding 45 to 4 using ToEven) and then rounding .44 to .4 using AwayFrom Zero. 72.555 returns 72.6 which is correct. – Michael Stum Nov 22 '08 at 20:12
I would expect 72.5. The lowest value you could use and have it be rounded to 72.5 in that case is 72.45. That's the midpoint between 72.4 and 72.5. You could only get 72.5 from that if you first rounded to two places to get 72.45, and then rounded again. But that's not how rounding works. – Rob Kennedy Nov 22 '08 at 20:13
6  
(72.445 - 72.4) = .045. (72.445 - 72.5) = -.055. No matter how you choose to round, the answer is 72.4. Your choice of rounding algorithms only come into play when the next digit is a 5 - so that it's a midpoint between 2 answers. – Mark Brackett Nov 22 '08 at 20:36
Agree with Mark Brackett. – Ian Nelson Nov 22 '08 at 21:20
show 1 more comment
vote up 3 vote down

I would expect 72.5, but the result is 72.4

I wouldn't.

Are you saying you'd round 2.444444444444444449 up to three? (If you were rounding to zero decimal places)

link|flag

Your Answer

Get an OpenID
or

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