A digital watch displays hours and minutes with AM and PM. What is the largest possible sum of the digits in the display?
- A)
- B)
- C)
- D)
- E)
Answer
E
Key insight
Maximize the hour digits and the minute digits separately: hour 9 beats 10, 11, 12 in digit sum, and minutes top out at 59.
Solution
The hour part and the minute part are independent, so maximize each on its own.
Hours run from to . A one-digit hour contributes its own value, at most ; the two-digit hours , , contribute only , , . So the best hour is , contributing .
Minutes run from to . The tens digit is at most and the ones digit at most , and achieves both, contributing .
The display therefore has digit sum , and nothing larger is possible.
The answer is .
Why this works
When a quantity splits into independent pieces, the maximum of the sum is the sum of the maxima, provided each maximum is attainable at the same time (here is a real display). The twist is that "biggest number" and "biggest digit sum" differ: is a larger hour than but has a far smaller digit sum.
The trap
Assuming the largest time 12:59 gives the largest digit sum; 1 + 2 + 5 + 9 = 17 (choice (A)) loses to 9:59.
Common mistakes
- Assuming the largest time gives the largest digit sum; (choice (A)) loses to .
- Letting the minute tens digit be (as in ), which is not a valid time.
Techniques
Consider the largest/smallest element or boundary case