In C#, the result of Math.Round(2.5) is 2.
It is supposed to be 3, isn't it? Why is it 2 instead in C#?
|
Firstly, this wouldn't be a C# bug anyway - it would be a .NET bug. C# is the language - it doesn't decide how And secondly, no - if you read the docs, you'll see that the default rounding is "round to even" (banker's rounding):
You can specify how
Whether this default was well chosen or not is a different matter. ( You may be interested to take a look at the nearest Java equivalent enum ( |
|||||||||||||||||||||
|
|
That's called rounding to even (or banker's rounding), which is a valid rounding strategy for minimizing accrued errors in sums Follow these links for the MSDN descriptions of:
The following diagram and table may help:
Note that
With the other functions, you have to use multiply/divide trickery to achieve the same effect:
(a) Of course, that theory depends on the fact that your data has an fairly even spread of values across the even halves (0.5, 2.5, 4.5, ...) and odd halves (1.5, 3.5, ...). If all the "half-values" are evens (for example), the errors will accumulate just as fast as if you always rounded up. |
|||||
|
|
From MSDN, Math.Round(double a) returns:
... 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:
You can specify a different rounding behavior by calling the overloads of Math.Round that take a |
||||
|
|
|
You should check MSDN for
You can specify the behavior of
|
||||
|
|
The nature of roundingConsider the task of rounding a number that contains a fraction to, say, a whole number. The process of rounding in this circumstance is to determine which whole number best represents the number you are rounding. In common, or 'arithmetic' rounding, it is clear that 2.1, 2.2, 2.3 and 2.4 round to 2.0; and 2.6, 2.7, 2.8 and 2.9 to 3.0. That leaves 2.5, which is no nearer to 2.0 than it is to 3.0. It is up to you to choose between 2.0 and 3.0, either would be equally valid. For minus numbers, -2.1, -2.2, -2.3 and -2.4, would become -2.0; and -2.6, 2.7, 2.8 and 2.9 would become -3.0 under arithmetic rounding. For -2.5 a choice is needed between -2.0 and -3.0. Other forms of rounding 'Rounding up' takes any number with decimal places and makes it the next 'whole' number. Thus not only do 2.5 and 2.6 round to 3.0, but so do 2.1 and 2.2. Rounding up moves both positive and negative numbers away from zero. Eg. 2.5 to 3.0 and -2.5 to -3.0. 'Rounding down' truncates numbers by chopping off unwanted digits. This has the effect of moving numbers towards zero. Eg. 2.5 to 2.0 and -2.5 to -2.0 In "banker's rounding" - in its most common form - the .5 to be rounded is rounded either up or down so that the result of the rounding is always an even number. Thus 2.5 rounds to 2.0, 3.5 to 4.0, 4.5 to 4.0, 5.5 to 6.0, and so on. 'Alternate rounding' alternates the process for any .5 between rounding down and rounding up. 'Random rounding' rounds a .5 up or down on an entirely random basis. Symmetry and asymmetry A rounding function is said to be 'symmetric' if it either rounds all numbers away from zero or rounds all numbers towards zero. A function is 'asymmetric' if rounds positive numbers towards zero and negative numbers away from zero.. Eg. 2.5 to 2.0; and -2.5 to -3.0. Also asymmetric is a function that rounds positive numbers away from zero and negative numbers towards zero. Eg. 2.5 to 3.0; and -2.5 to -2.0. Most of time people think of symmetric rounding, where -2.5 will be rounded towards -3.0 and 3.5 will be rounded towards 4.0. (in C# |
||||
|
|
|
The default Who are these bankers that are rounding down on even numbers (British bankers perhaps!)?From wikipedia
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:
|
||||
|
|
|
From MSDN:
http://msdn.microsoft.com/en-us/library/system.math.round.aspx |
|||
|
|
|
Since Silverlight doesn't support the MidpointRounding option you have to write your own. Something like:
For the examples including how to use this as an extension see the post: .NET and Silverlight Rounding |
|||
|
|
|
This post has the answer you are looking for: http://weblogs.asp.net/sfurman/archive/2003/03/07/3537.aspx Basically this is what it says: Return Value The number nearest value with precision equal to digits. If value is halfway between two numbers, one of which is even and the other odd, then the even number is returned. If the precision of value is less than digits, then value is returned unchanged. 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. If digits is zero, this kind of rounding is sometimes called rounding toward zero. |
|||
|
|
|
This is ugly as all hell, but always produces correct arithmetic rounding.
|
|||||
|
|
I had this problem where my SQL server rounds up 0.5 to 1 while my C# application didn't. So you would see two different results. Here's an implementation with int/long. This is how Java rounds.
It's probably the most efficient method you could think of as well. If you want to keep it a double and use decimal precision , then it's really just a matter of using exponents of 10 based on how many decimal places.
You can input a negative decimal for decimal points and it's word fine as well.
|
|||
|
|
|
Here's the way i had to work it aROUND :
Trying with 1.905 with 2 decimals will give 1.91 as expected but Math.Round(1.905,2,MidpointRounding.AwayFromZero) gives 1.90! Math.Round method is absolutely inconsistent and unusable for most of the basics problems programmers may encounter. I have to check if (int) 1.905 * decimalPowerOfTen = Math.Round(number * decimalPowerOfTen, 2) cause i don not want to round up what should be round down |
|||
|
|
|
Silverlight doesn't support the MidpointRounding option. Here's an extension method for Silverlight that adds the MidpointRounding enum:
Source: http://anderly.com/2009/08/08/silverlight-midpoint-rounding-solution/ |
|||
|
|
Math.Round(2.5, 0, MidpointRounding.AwayFromZero);– Robert Durgin Jun 10 '09 at 20:001.005can't be represented exactly in double. It's probably1.00499.... If you useDecimalthis 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. – CodesInChaos Nov 1 '11 at 15:14