The mean, median, unique mode, and range of a collection of eight integers are all equal to 8. The largest integer that can be an element of this collection is
- A)
- B)
- C)
- D)
- E)
Answer
D
Key insight
Mean fixes the sum at 64, range ties the minimum to max minus 8, and unique mode forces enough 8s to outnumber the repeated low values.
Solution
Let the largest value be . The constraints: total ; the smallest value is ; the 4th and 5th values average to ; and appears strictly more often than any other value.
Try . Then every value is at least . With mean , the seven other values sum to , so they average exactly and all equal : then is the mode, contradiction. Larger fails the same way (the minimum would be or more, making the total exceed ).
Try . Minimum ... but we may use as the minimum only if , i.e. gives minimum . Take : sum , median , mode (four times versus three), range . All conditions hold.
The answer is .
Why this works
Optimization with statistics constraints is a balancing act: the mean fixes the sum, so raising one value forces others down; the range ties the minimum to the maximum; and the unique mode caps how many low values you may repeat. Test the largest candidate, show it breaks a constraint, then construct an explicit example for the next one.
The trap
Ignoring that the mode must be unique, or forgetting the mean fixes the total at 64.
Common mistakes
- Ignoring that the mode must be unique, or forgetting the mean fixes the total at 64.
- Stopping at a valid example (like a maximum of ) without checking whether a larger maximum is also achievable.
Techniques
Bound the quantity above/below or estimate to pin it down · Split into exhaustive cases and handle each