A list of positive integers has a mean of , a median of , and a unique mode of . What is the largest possible value of an integer in the list?
- A)
- B)
- C)
- D)
- E)
Answer
E
Key insight
Minimize the other ten entries: use few 8s so small numbers like 1 can fill the low slots, while the median pins 9 in the middle.
Solution
The total is . Sort the list ; the median gives . To make as large as possible, make as small as possible.
Say appears times. All the 8s sit below the median, so , and every other value appears at most times. The value already appears once (as ), and each entry above the median is at least .
- : ; then at most four times, so , . Sum of ten: , so .
- : bottom ; , . Sum , so .
- : bottom ; , , . Sum , so .
- : bottom ; . Sum , so .
The best is : the list has sum , median , and unique mode .
The answer is .
Why this works
A fixed mean turns "maximize one entry" into "minimize the rest." The mode condition cuts both ways: more 8s let you repeat 9s and 10s above the median, but they also push out cheap entries like 1 below it. Trying each frequency of the mode is a short, exhaustive search, and the answer choices are exactly the values these cases produce.
The trap
Using five 8s to fill the bottom, which forces the other values up and yields 24; fewer 8s lets 1s in and gives a bigger maximum.
Common mistakes
- Using five 8s to fill the bottom, which forces the other values up and yields 24; fewer 8s lets 1s in and gives a bigger maximum.
- Placing three times when appears only three times, breaking the uniqueness of the mode.
Techniques
Split into exhaustive cases and handle each · Consider the largest/smallest element or boundary case