A standard six-sided die is rolled, and is the product of the five numbers that are visible. What is the largest number that is certain to divide ?
- A)
- B)
- C)
- D)
- E)
Answer
B
Key insight
P equals 720 divided by the hidden number, so the guaranteed divisor is the gcd of 720/1, ..., 720/6, which is 720/lcm(1,...,6) = 12.
Solution
The six faces multiply to . If the hidden bottom face shows , then the visible product is . As runs through , the possible values of are
A number is certain to divide exactly when it divides all six of these, so we want their greatest common divisor. Dividing by each of and taking the gcd is the same as dividing by the least common multiple of :
Concretely: hiding kills the factor ; hiding leaves only among the powers of (from and ); hiding or leaves a single factor of . What survives every case is .
The answer is .
Why this works
"Certain to divide" means "divides in the worst case," so for each prime you look for the roll that removes the most copies of that prime. Rewriting as turns the six cases into a single gcd computation, and whenever all divide .
Alternative approach
Check a few values directly: (hide ) and (hide ) already have , and adding (hide ) gives . Since also divides , , and , the answer is .
The trap
Reasoning from one typical roll (hiding 1 leaves 720) instead of the worst case for each prime: hiding 4 and hiding 6 are what remove the extra 2s and 3s.
Common mistakes
- Reasoning from one typical roll (hiding 1 leaves 720) instead of the worst case for each prime: hiding 4 and hiding 6 are what remove the extra 2s and 3s.
- Assuming a factor of is guaranteed because is "usually" visible, which leads to or -style overcounts.
Techniques
Set up the equation/formula and compute; no special trick needed · Consider the largest/smallest element or boundary case