Seven students count from 1 to 1000 as follows:
- Alice says all the numbers, except she skips the middle number in each consecutive group of three numbers. That is, Alice says 1, 3, 4, 6, 7, 9, ..., 997, 999, 1000.
- Barbara says all of the numbers that Alice doesn't say, except she also skips the middle number in each consecutive group of three numbers.
- Candice says all of the numbers that neither Alice nor Barbara says, except she also skips the middle number in each consecutive group of three numbers.
- Debbie, Eliza, and Fatima say all of the numbers that none of the students with the first names beginning before theirs in the alphabet say, except each also skips the middle number in each of her consecutive groups of three numbers.
- Finally, George says the only number that no one else says.
What number does George say?
- A)
- B)
- C)
- D)
- E)
Answer
C
Key insight
The unsaid numbers always form an arithmetic progression; each skip sends (first term, step) to (a + d, 3d), producing 2, 5, 14, 41, 122, 365.
Solution
Alice skips : an arithmetic progression with first term and common difference . These are the numbers handed to Barbara.
Now observe the general step. If a student receives the progression and groups it in threes, the middle numbers she skips are : again an arithmetic progression, with first term and difference . So the list passed on is described by the state
Iterate from Alice's leftover list :
- Barbara passes on ;
- Candice passes on ;
- Debbie passes on ;
- Eliza passes on ;
- Fatima receives and passes on .
The progression has only one term at most , so the unique number nobody before George says is . (Check with Fatima directly: her group of three is , so she skips ; the lone starts an incomplete group and is said, just as Alice says .)
The answer is .
Why this works
Instead of simulating numbers, describe the shape of what each student receives: an arithmetic progression, determined by two parameters. The skipping rule acts on those parameters by a simple map, so six rounds are six lines of arithmetic. The first terms satisfy , i.e. ; with six students before George and , exactly one number survives.
Alternative approach
Work backwards from the choices. The numbers Alice skips are ; Barbara's skips are ; in general the -th student's skips are . Test : , , , , , and . No other choice passes even the first two tests (, but ; but ; but ).
The trap
Mis-tracking the last stage: Fatima receives 122, 365, 608, 851 and skips only 365, so answering 122 or 851 (or stopping at Eliza) is wrong.
Common mistakes
- Mis-tracking the last stage: Fatima receives 122, 365, 608, 851 and skips only 365, so answering 122 or 851 (or stopping at Eliza) is wrong.
- Regrouping from each time (skipping numbers of the whole range again) instead of grouping each student's own list in threes.
- Choosing or because the powers of appear; the survivors are , not .
Techniques
Compute small cases, spot the pattern, generalize · Define states/recurrence and iterate