Rounding issues with allocating dollar amounts across multiple people - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T16:08:25Zhttp://stackoverflow.com/feeds/question/924019http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/924019/rounding-issues-with-allocating-dollar-amounts-across-multiple-people1Rounding issues with allocating dollar amounts across multiple peopleJon2009-05-29T01:33:49Z2009-07-10T03:39:33Z
<p>What is the best way to solve this problem in code? </p>
<p>The problem is that I have 2 dollar amounts (known as a pot), that need to be allocated to 3 people. Each person gets a specific amount that comes from both pots and the rates must be be approximately the same. I keep coming across rounding issues where my allocations either add up to too much or too little.</p>
<p>Here is a specific example: </p>
<p>Pot #1 987,654.32<br />
Pot #2 123,456.78 </p>
<p>Person #1 gets Allocation Amount: 345,678.89<br />
Person #2 gets Allocation Amount: 460,599.73<br />
Person #3 gets Allocation Amount: 304,832.48 </p>
<p>My logic is as follows (Code is in c#):</p>
<pre><code>foreach (Person person in People)
{
decimal percentage = person.AllocationAmount / totalOfAllPots;
decimal personAmountRunningTotal = person.AllocationAmount;
foreach (Pot pot in pots)
{
decimal potAllocationAmount = Math.Round(percentage * pot.Amount, 2);
personAmountRunningTotal -= potAllocationAmount;
PersonPotAssignment ppa = new PersonPotAssignment();
ppa.Amount = potAllocationAmount;
person.PendingPotAssignments.Add(ppa);
}
foreach (PersonPotAssignment ppa in person.PendingPotAssignments)
{
if (personAmountRunningTotal > 0) //Under Allocated
{
ppa.Amount += .01M;
personAmountRunningTotal += .01M;
}
else if (personAmountRunningTotal < 0) //Over Allocated
{
ppa.Amount -= .01M;
personAmountRunningTotal -= .01M;
}
}
}
</code></pre>
<p>The results I get are as follows: </p>
<p>Pot #1, Person #1 = 307,270.13<br />
Pot #1, Person #2 = 409,421.99<br />
Pot #1, Person #3 = 270,962.21<br />
Pot #1 Total = 987,654.33 (1 penny off) </p>
<p>Pot #2, Person #1 = 38,408.76<br />
Pot #2, Person #2 = 51,177.74<br />
Pot #2, Person #3 = 33,870.27<br />
Pot #2 Total = 123,456.77 (1 penny off) </p>
<p>The Pot Totals should match the original totals.</p>
<p>I think I may be missing something or there may be an extra step that I need to take. I think I am on the right track.</p>
<p>Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/924019/rounding-issues-with-allocating-dollar-amounts-across-multiple-people/924029#9240290Answer by Adrian Godong for Rounding issues with allocating dollar amounts across multiple peopleAdrian Godong2009-05-29T01:37:41Z2009-05-29T01:37:41Z<p>Definitely the Math.Round.</p>
<p>I would suggest not rounding the calculation result, but if you need to display, then round to nearest penny. Or you can use pennies as smallest denominator, thus when displaying, divide everything by 100.</p>
http://stackoverflow.com/questions/924019/rounding-issues-with-allocating-dollar-amounts-across-multiple-people/924035#9240351Answer by duffymo for Rounding issues with allocating dollar amounts across multiple peopleduffymo2009-05-29T01:40:55Z2009-05-29T01:40:55Z<p>I think this is exactly the problem that Eric Evans addresses in his <a href="http://rads.stackoverflow.com/amzn/click/0321125215" rel="nofollow">"Domain Driven Design"</a> Chapter 8, pp. 198-203.</p>
http://stackoverflow.com/questions/924019/rounding-issues-with-allocating-dollar-amounts-across-multiple-people/924037#9240371Answer by Brian Reiter for Rounding issues with allocating dollar amounts across multiple peopleBrian Reiter2009-05-29T01:42:42Z2009-05-29T01:42:42Z<p>Have you tried conntrolling the rounding behavior with the MidpointRounding argument?</p>
<pre><code>public static decimal Round( decimal d, MidpointRounding mode )
</code></pre>
http://stackoverflow.com/questions/924019/rounding-issues-with-allocating-dollar-amounts-across-multiple-people/924132#9241327Answer by Matt Spradley for Rounding issues with allocating dollar amounts across multiple peopleMatt Spradley2009-05-29T02:21:46Z2009-05-29T02:34:28Z<p>This happens in financial calculations a lot when rounding to the nearest penny. No amount of tweaking the individual operations rounding algorithm will work for every case.</p>
<p>You have to have an accumulator that tracks the amount allocated after the rounding and distribution operation. At the end of the allocations, you check the accumulator against the actual results (summed together) and distribute the leftover penny.</p>
<p>In the math example below, if you take 0.133 and round it to 0.13 and add 3 times you get a penny less than if you add 0.133 3 times first and then round.</p>
<pre><code> 0.13 0.133
0.13 0.133
+0.13 +0.133
_____ ______
0.39 0.399 -> 0.40
</code></pre>
http://stackoverflow.com/questions/924019/rounding-issues-with-allocating-dollar-amounts-across-multiple-people/924198#9241980Answer by Jon Schneider for Rounding issues with allocating dollar amounts across multiple peopleJon Schneider2009-05-29T02:52:09Z2009-05-29T02:52:09Z<p>+1 for Matt Spradley's solution.</p>
<p>As an additional comment to Matt's solution, you of course also need to account for the case where you end up allocating penny (or more) <em>less</em> than the target amount -- in that case, you need to subtract money from one or more of the allocated amounts.</p>
<p>You also need to ensure that you don't end up subtracting a penny from an allocated amount of $0.00 (in the event that you are allocating a very small amount among a large number of recipients).</p>
http://stackoverflow.com/questions/924019/rounding-issues-with-allocating-dollar-amounts-across-multiple-people/925394#9253940Answer by AakashM for Rounding issues with allocating dollar amounts across multiple peopleAakashM2009-05-29T10:43:18Z2009-05-29T10:43:18Z<p>What to do when dividing money is a perennial problem. Martin Fowler offers some commentary <a href="http://martinfowler.com/ap2/quantity.html" rel="nofollow">here</a> (I think there is more detail in his actual <a href="http://martinfowler.com/books.html#eaa" rel="nofollow">PoEAA</a> book):</p>
<blockquote>
<p>But division is not [straightforward], as we have to take care of errant pennies. We'll do that by returning an array of monies, such that the sum of the array is equal to the original amount, and the original amount is distributed fairly between the elements of the array. Fairly in this sense means those at the beginning get the extra pennies.</p>
</blockquote>
<pre><code>class Money...
public Money[] divide(int denominator) {
BigInteger bigDenominator = BigInteger.valueOf(denominator);
Money[] result = new Money[denominator];
BigInteger simpleResult = amount.divide(bigDenominator);
for (int i = 0; i < denominator ; i++) {
result[i] = new Money(simpleResult, currency, true);
}
int remainder = amount.subtract(simpleResult.multiply(bigDenominator)).intValue();
for (int i=0; i < remainder; i++) {
result[i] = result[i].add(new Money(BigInteger.valueOf(1), currency, true));
}
return result;
}
</code></pre>