In JavaScript, Given (x) number of fractions like this:
0.3
0.3
0.2
0.1
0.1
(That sum to 1)
How can I make sure that when I multiply these by a number (n), say 1000, and round the results to integers, the sum of these integers will equal (n)?
|
In JavaScript, Given (x) number of fractions like this:
(That sum to 1) How can I make sure that when I multiply these by a number (n), say 1000, and round the results to integers, the sum of these integers will equal (n)?
| |||
|
feedback
|
|
Use the Largest Remainder Method: Step 1: Multiply the numbers by
Step 2: Sum up the whole number parts
Step 3: Sort the remainders from highest to lowest
Step 4: Add In our case, we are 2 away from the target sum ( Your final list is:
| |||||||
feedback
|
|
You can't guarantee it if you multiply, round, and sum. Why don't you sum first, then multiply, then round? | |||
|
feedback
|