Steve wrote the digits , , , , and in order repeatedly from left to right, forming a list of digits, beginning He then erased every third digit from his list (that is, the rd, th, th, digits from the left), then erased every fourth digit from the resulting list (that is, the th, th, th, digits from the left in what remained), and then erased every fifth digit from what remained at that point. What is the sum of the three digits that were then in the positions ?
- A)
- B)
- C)
- D)
- E)
Answer
D
Key insight
Each erasure keeps the list periodic: 30 original digits become 20, then 15, then 12, so the final list repeats every 12 digits.
Solution
Track the period. The original list repeats every digits. Erasing every third digit is periodic with period , leaving digits per ; equivalently, per original digits, remain. Erasing every fourth of those leaves per block, and erasing every fifth of those leaves . Each block length is divisible by the erasure step, so the erasures line up with block boundaries and the final list has period .
Work out one block of original digits, :
- Remove every 3rd: (20 digits).
- Remove every 4th: (15 digits).
- Remove every 5th: (12 digits).
Now , so positions correspond to positions of the block: digits . Their sum is .
(The list is long enough: digits remain, more than .)
The answer is .
Why this works
Deleting every th term of a periodic list produces another periodic list, with period shrunk by the factor . Chaining three erasures just chains the lcm's. Once the final period is known, a single index reduction mod replaces any attempt to simulate thousands of digits.
The trap
Applying the three erasures to the original position numbers simultaneously instead of to the shrinking list, or using the wrong period.
Common mistakes
- Applying the three erasures to the original position numbers simultaneously instead of to the shrinking list, or using the wrong period.
- Reducing as or off by one; write explicitly.
Techniques
Organized listing / direct enumeration · Compute small cases, spot the pattern, generalize