In C#, the result of Math.Round(2.5) is 2.

It is supposed to be 3, isn't it? Is this a C# bug or something?

Thanks!

link|improve this question

80% accept rate
SQL Server rounds that way; interesting test results when there is a C# unit test ti validate rounding done in T-SQL. – idstam Jun 30 '09 at 20:28
28  
Another day, another person confused by IEEE specs. – leppie Oct 22 '09 at 9:29
My thoughts exactly - are you kidding me!? – AareP Oct 31 '09 at 17:26
2  
1  
@amed that's not a bug. It's the way binary floating points work. 1.005 can't be represented exactly in double. It's probably 1.00499.... If you use Decimal this problem will disappear. The existence of the Math.Round overload that takes a number of decimal digits on double is a dubious design choice IMO, since it will rarely work in a meaningful way. – CodeInChaos Nov 1 '11 at 15:14
show 2 more comments
feedback

9 Answers

up vote 200 down vote accepted

Firstly, this wouldn't be a C# bug anyway - it would be a .NET bug. C# is the language - it doesn't decide how Math.Round is implemented.

And secondly, no - if you read the docs, you'll see that the default rounding is "round to even" (banker's rounding):

Return Value
Type: System.Double
The integer nearest a. If the fractional component of a is halfway between two integers, one of which is even and the other odd, then the even number is returned. Note that this method returns a Double instead of an integral type.

Remarks
The behavior of this method follows IEEE Standard 754, section 4. This kind of rounding is sometimes called rounding to nearest, or banker's rounding. It minimizes rounding errors that result from consistently rounding a midpoint value in a single direction.

You can specify how Math.Round should round mid-points using an overload which takes a MidpointRounding value. There's one overload with a MidpointRounding corresponding to each of the overloads which doesn't have one:

Whether this default was well chosen or not is a different matter. (MidpointRounding was only introduced in .NET 2.0. Before then I'm not sure there was any easy way of implementing the desired behaviour without doing it yourself.) In particular, history has shown that it's not the expected behaviour - and in most cases that's a cardinal sin in API design. I can see why Banker's Rounding is useful... but it's still a surprise to many.

You may be interested to take a look at the nearest Java equivalent enum (RoundingMode) which offers even more options. (It doesn't just deal with midpoints.)

link|improve this answer
29  
Awww, Skeet-Owned. – KingNestor Jun 10 '09 at 19:56
20  
Do you have six hands or something? How do you answer that fast? – Matthew Jones Jun 10 '09 at 19:57
77  
You're assuming I sleep. – Jon Skeet Jun 10 '09 at 20:01
18  
I knew it! You ARE a robot! :) – Matthew Jones Jun 10 '09 at 20:02
39  
@Erik: You're assuming I type with my hands. – Jon Skeet Jun 11 '09 at 7:56
show 17 more comments
feedback

From MSDN, Math.Round(double a) returns:

The integer nearest a. If the fractional component of a is halfway between two integers, one of which is even and the other odd, then the even number is returned.

... and so 2.5, being halfway between 2 and 3, is rounded down to the even number (2). this is called Banker's Rounding (or round-to-even), and is a commonly-used rounding standard.

Same MSDN article:

The behavior of this method follows IEEE Standard 754, section 4. This kind of rounding is sometimes called rounding to nearest, or banker's rounding. It minimizes rounding errors that result from consistently rounding a midpoint value in a single direction.

You can specify a different rounding behavior by calling the overloads of Math.Round that take a MidpointRounding mode.

Really, documentation is your friend.

link|improve this answer
feedback

You should check MSDN for Math.Round:

The behavior of this method follows IEEE Standard 754, section 4. This kind of rounding is sometimes called rounding to nearest, or banker's rounding.

You can specify the behavior of Math.Round using an overload:

Math.Round(2.5, 0, MidpointRounding.AwayFromZero); // gives 3

Math.Round(2.5, 0, MidpointRounding.ToEven); // gives 2
link|improve this answer
Why doesn't AwayFromZero yield 3? Why doesn't ToEven yield 2? – David B Jun 10 '09 at 20:15
@David B: You are right of course, it's corrected now. – 0xA3 Jun 10 '09 at 20:21
feedback

The default MidpointRounding.ToEven, or Bankers' rounding has stung me before with writing reports for accounting, so I'll write a few words of what I found out, previously and from looking into it for this post.

Who are these bankers that are rounding down on even numbers (British bankers perhaps!)?

From wikipedia

The origin of the term bankers' rounding remains more obscure. If this rounding method was ever a standard in banking, the evidence has proved extremely difficult to find. To the contrary, section 2 of the European Commission report The Introduction of the Euro and the Rounding of Currency Amounts suggests that there had previously been no standard approach to rounding in banking; and it specifies that "half-way" amounts should be rounded up.

It seems a very strange way of rounding particularly for banking, unless of course banks use to receive lots of deposits of even amounts. Deposit £2.4m, but we'll call it £2m sir.

The IEEE Standard 754 dates back to 1985 and gives both ways of rounding, but with banker's as the recommended by the standard. This wikipedia article has a long list of how languages implement rounding (correct me if any of the below are wrong) and most don't use Bankers' but the rounding you're taught at school:

  • C/C++ round() from math.h rounds away from zero (not banker's rounding)
  • Java Math.Round rounds away from zero (it floors the result, adds 0.5, casts to an integer). There's an alternative in BigDecimal
  • Perl uses a similar way to C
  • Javascript is the same as Java's Math.Round.
link|improve this answer
feedback
Math.Round(2.5, 0, MidpointRounding.AwayFromZero);
link|improve this answer
feedback

Apparently the round method, when asked to round a number exactly between two integers, returns the even integer. So, Math.Round(3.5) returns 4.

See this article

link|improve this answer
And Math.Round(4.5) also returns 4. – Robert Harvey Sep 15 '10 at 23:03
feedback

How about this:

Math.Round(1123.485, 2, MidpointRounding.AwayFromZero)

gives the same result as

Math.Round(1123.485, 2, MidpointRounding.ToEven)

and that is 1123.48 :)

How logical is that?

link|improve this answer
6  
1123.485 is not representable without error in IEEE floating point. Hence it's not a midpoint, so MidpointRounding does not apply. – Yuliy Sep 24 '09 at 8:10
feedback

Since Silverlight doesn't support the MidpointRounding option you have to write your own. Something like:

public double RoundCorrect(double d, int decimals)
{
    double multiplier = Math.Pow(10, decimals);

    if (d < 0)
        multiplier *= -1;

    return Math.Floor((d * multiplier) + 0.5) / multiplier;

}

For the examples including how to use this as an extension see the post: .NET and Silverlight Rounding

link|improve this answer
feedback

This is ugly as all hell, but always produces correct arithmetic rounding.

public double ArithRound(double number,int places){

  string numberFormat = "###.";

  numberFormat = numberFormat.PadRight(numberFormat.Length + places, '#');

  return double.Parse(number.ToString(numberFormat));

}
link|improve this answer
1  
So does calling Math.Round and specifying how you want it to round. – configurator Sep 16 '10 at 23:45
feedback

protected by sixlettervariables Oct 13 '11 at 15:02

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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