vote up 16 vote down star
3

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!

flag

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 at 20:28
3  
Another day, another person confused by IEEE specs. – leppie Oct 22 at 9:29
My thoughts exactly - are you kidding me!? – AareP Oct 31 at 17:26

10 Answers

vote up 75 vote down check

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|flag
9  
Awww, Skeet-Owned. – KingNestor Jun 10 at 19:56
4  
Do you have six hands or something? How do you answer that fast? – Matthew Jones Jun 10 at 19:57
22  
You're assuming I sleep. – Jon Skeet Jun 10 at 20:01
3  
I knew it! You ARE a robot! :) – Matthew Jones Jun 10 at 20:02
5  
@Erik: You're assuming I type with my hands. – Jon Skeet Jun 11 at 7:56
show 13 more comments
vote up 0 vote down

Return Value Type: System.Double The integer nearest a. If the fractional component of...

blah blah blah... Who reads this stuff anyway. After stumbling on Math.Round(2.5)==2 bug it took me few seconds to decide to write my own rounding function, and a minute to implement one. But of course I'm still baffled by how so widely used library allows such screw ups. If theoretical math says 2.5 rounded to integral number is 3, then it is. Period. No buts. End of file. :)

PS. value>=0 ? (int)(value+0.5) : -(int)(-value+0.5)

link|flag
vote up 0 vote down

This 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 use school style rounding:

  • 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|flag
vote up 0 vote down

Any clues on which way rounding goes when using ToString()? E.g:

decimal a = 1.725m;
uxTB.Text = a.ToString("n");
uxTB.Text = a.ToString("c");
uxTB.Text = a.ToString("0.00");

etc.

I'm in a situation where I'm converting a site from "classic" ASP to ASP.Net and the old VBScript FormayNumber method has been used extensively, which rounds up, and I have been using Math.Round(a, 2) for financial figures until I came upon the "banker's rounding" outcome. The new app must look and work exactly like the old app, so I can't have £1.72 appearing where previously it was £1.73....

I'll be using the full-figured (snigger) decimal amounts (e.g. 1.725) for back-end calculations, and then rounding the outcomes as necessary, as they are financial amounts - I just need to impress this on the project sponsors I think, as they may want me to use Math.Ceiling instead...

EDIT: Why does Math.Round(1.725m, 2) return 1.72? The 2 is clearly between two odd numbers, yet the even number is returned. HAY-YELP!

Ta for any advice...

link|flag
This isn't the place for question. Ask a new question if you have one: stackoverflow.com/questions/ask – Kobi Oct 22 at 9:27
Math.Round(1.725m, 2) returns 1.72 because the rule is round-to-even for bankers rounding, so 1.725 could round to 1.72 or 1.73, but 1.73 is odd, so 1.72 is selected – JonoW Oct 28 at 16:36
Thank you JonoW :-) – Mike Kingscott Oct 29 at 9:16
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
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 at 8:10
vote up 2 vote down
Math.Round(2.5, 0, MidpointRounding.AwayFromZero);
link|flag
vote up 1 vote down

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|flag
vote up 7 vote down

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|flag
Why doesn't AwayFromZero yield 3? Why doesn't ToEven yield 2? – David B Jun 10 at 20:15
@David B: You are right of course, it's corrected now. – divo Jun 10 at 20:21
vote up 17 vote down

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|flag

Your Answer

Get an OpenID
or

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