I looked at it very simply:
We have a list, one summation is accurate, the other is inaccurate, though, we know HOW it's inaccurate (even tenths? round up to nearest int.. odd tenths? round down to nearest in..)
So, to get a range, let's find the minimum and maximum of this list.
Ok, so, to make the sum of the list the
highest:
- We must have the highest increase AND the lowest decrease.
From here, we can do the following:
To get the highest increase (since even tenths are rounded up), we'd need to start at the lowest even #, which is .2
If .2 is rounded up to the nearest integer, that's an increase of .8.
To get the lowest possible decrease (since odds are rounded down), we'd start at the lowest even #, which is .1
If .1 is rounded down, it's only a decrease of .1.
Since we know the even's make up 1/3rd of the list of 30, there are 10 evens and 20 odds.
Thus, (.8) * 10 will get you the increase from the evens, and (.1) * 20 will get you the decrease from the odds.
So, the highest possible increase is (.8) * 10 minus (.1) * 20.
This equals a difference of 6.Great! 6 is an option.
Now, let's move on to make the sum of the list the
lowest.
- To do this, we must have the lowest increase AND the highest decrease.
Thus, we do the following:
To get the highest decrease (reminder: odd tenths are rounded down), we'd need to start at the highest odd #, which is .9
If .9 is rounded down, it's a decrease of .9.
Since we know there are 20 odd #'s, this will be (.9) * 20
To get the lowest decrease (reminder: even tenths are rounded up), we'd need to start at the highest even #, which is .8
If .8 is rounded up, it's a minimal increase of .2.
Since we know there are 10 even #'s, this will be (.2) * 10
So, identical to before, let's combine these two:
(.2) * 10 will get you the increase from the evens, and (.9) * 20 will get you the decrease from the odds.
So, the lowest possible decrease is (.2) * 10 minus (.9) * 20.
This equals a difference of -16.
Thus, we just found the minimum and maximum. These two numbers,
6 <--> -16, form a range.
Easy enough: 6 & -16 are both options, but, we can rule out 10 since it doesn't fall within the min/max range.
Hope this helps!