.Net Round Bug - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T19:53:34Zhttp://stackoverflow.com/feeds/question/846911http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/846911/net-round-bug2.Net Round Bugkrs432009-05-11T06:11:13Z2009-05-12T05:23:39Z
<p>The Math.Round function for .Net 3.5 SP1 appears to round 0.5 to zero, while it rounds 1.5 to 2.0. I have tested this with decimal numbers, and the following code:</p>
<pre><code>decimal pos = 0.5m;
decimal neg = -0.5m;
Console.WriteLine("Pos: {0} Rnd: {1}", pos, Math.Round(pos));
Console.WriteLine("Neg: {0} Rnd: {1}", neg, Math.Round(neg));
Console.ReadKey();
</code></pre>
<p>This code outputs the following:</p>
<p>Pos: 0.5 Rnd: 0
Neg: -0.5 Rnd: 0</p>
<p>This seems like a glaring bug. Is there a known work around? I've tested this on a Core2 processor, and an i7, so it does not appear to be hardware. And Reflector just says that the decimal.round function ultimately calls a system call.</p>
<p>Let me know if anyone else see's this.</p>
http://stackoverflow.com/questions/846911/net-round-bug/846917#84691722Answer by paxdiablo for .Net Round Bugpaxdiablo2009-05-11T06:14:34Z2009-05-11T06:14:34Z<p>That's called rounding to even, which is a valid rounding strategy for minimizing accrued errors in sums <code>(MidpointRounding.ToEven)</code>. The theory is that, if you always round a 0.5 number in the same direction, the errors will accrue faster (round-to-even is supposed to minimize that).</p>
<p>Here's an extract from another question I answered that explains the different rounding strategies in .NET:</p>
<p>Follow these links for the MSDN descriptions of:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/system.math.floor.aspx" rel="nofollow"><code>Math.Floor</code></a>, which rounds down towards negative infinity.</li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.math.ceiling.aspx" rel="nofollow"><code>Math.Ceiling</code></a>, which rounds up towards positive infinity.</li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.math.truncate.aspx" rel="nofollow"><code>Math.Truncate</code></a>, which rounds up or down towards zero.</li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.math.round.aspx" rel="nofollow"><code>Math.Round</code></a>, which rounds to the nearest integer or specified number of decimal places. You can specify the behavior if it's exactly equidistant between two possibilities, such as rounding so that the final digit is even ("<code>Round(2.5,MidpointRounding.ToEven)</code>" becoming 2) or so that it's further away from zero ("<code>Round(2.5,MidpointRounding.AwayFromZero)</code>" becoming 3).</li>
</ul>
<p>The following diagram and table may help:</p>
<pre><code>-3 -2 -1 0 1 2
+--|------+---------+----|----+--|------+----|--|-+
a b c d e
a=-2.7 b=-0.5 c=0.3 d=1.5 e=2.8
====== ====== ===== ===== =====
Floor -3 -1 0 1 2
Ceiling -2 0 1 2 3
Truncate -2 0 0 1 2
Round(ToEven) -3 0 0 2 3
Round(AwayFromZero) -3 -1 0 2 3
</code></pre>
<p>Note that <code>Round</code> is a lot more powerful than it seems, simply because it can round to a specific number of decimal places. All the others round to zero decimals always. For example:</p>
<pre><code>n = 3.145;
a = System.Math.Round (n, 2, MidpointRounding.ToEven); // 3.14
b = System.Math.Round (n, 2, MidpointRounding.AwayFromZero); // 3.15
</code></pre>
<p>With the other functions, you have to use multiply/divide trickery to achieve the same effect:</p>
<pre><code>c = System.Math.Truncate (n * 100) / 100; // 3.14
d = System.Math.Ceiling (n * 100) / 100; // 3.15
</code></pre>
http://stackoverflow.com/questions/846911/net-round-bug/846918#8469189Answer by Cristian Donoso for .Net Round BugCristian Donoso2009-05-11T06:14:41Z2009-05-11T06:14:41Z<p>From MSDN:</p>
<blockquote>
<p>By default, Math.Round uses
MidpointRounding.ToEven. Most people
are not familiar with "rounding to
even" as the alternative, "rounding
away from zero" is more commonly
taught in school. .NET defaults to
"Rounding to even" as it is
statistically superior because it
doesn't share the tendency of
"rounding away from zero" to round up
slightly more often than it rounds
down (assuming the numbers being
rounded tend to be positive.)</p>
</blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/system.math.round.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.math.round.aspx</a></p>
http://stackoverflow.com/questions/846911/net-round-bug/846922#8469222Answer by Joe for .Net Round BugJoe2009-05-11T06:16:31Z2009-05-11T06:16:31Z<p>It's actually a feature. See <a href="http://msdn.microsoft.com/en-us/library/3s2d3xkk(VS.80).aspx" rel="nofollow">the MSDN documentation</a>.</p>
<p>This kind of rounding is known as banker's rounding.</p>
<p>As for a workaround, there is <a href="http://msdn.microsoft.com/en-us/library/ms131274(VS.80).aspx" rel="nofollow">an overload</a> that allows the caller to specify how to do the rounding.</p>
http://stackoverflow.com/questions/846911/net-round-bug/846928#8469280Answer by Vaccano for .Net Round BugVaccano2009-05-11T06:21:29Z2009-05-11T06:21:29Z<p>This post has the answer you are looking for:</p>
<p><a href="http://weblogs.asp.net/sfurman/archive/2003/03/07/3537.aspx" rel="nofollow">http://weblogs.asp.net/sfurman/archive/2003/03/07/3537.aspx</a></p>
<p>Basically this is what it says:</p>
<p>Return Value</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/846911/net-round-bug/846940#8469409Answer by Patrick Peters for .Net Round BugPatrick Peters2009-05-11T06:25:10Z2009-05-12T05:23:39Z<h2><strong>The nature of rounding</strong></h2>
<p>Consider 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.</p>
<p>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.</p>
<p>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. </p>
<p>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.</p>
<p>For -2.5 a choice is needed between -2.0 and -3.0. </p>
<p><strong>Other forms of rounding</strong></p>
<p>'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.</p>
<p>Rounding up moves both positive and negative numbers away from zero. Eg. 2.5 to 3.0 and -2.5 to -3.0.</p>
<p>'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</p>
<p>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.</p>
<p>'Alternate rounding' alternates the process for any .5 between rounding down and rounding up.</p>
<p>'Random rounding' rounds a .5 up or down on an entirely random basis.</p>
<p><strong>Symmetry and asymmetry</strong></p>
<p>A rounding function is said to be 'symmetric' if it either rounds all numbers away from zero or rounds all numbers towards zero.</p>
<p>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.</p>
<p>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.</p>
<p><strong><em>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.</em></strong> (in C# <code>Round(AwayFromZero)</code>)</p>