Random Post
Recent Posts
- Tantalizer 13: Balls
- Enigma 838: Time for insomniacs
- Headscratcher #224: Russian dolls
- Tantalizer 12: Aunts
- Enigma 937: Progressive football
- Headscratcher #223: Setting the right tone
- Tantalizer 11: Night-watchman
- Enigma 837: The quick brown …
- Puzzle #222: A question of balance
- Tantalizer 10: The case of the mangled millionaire
Recent Comments
Archives
Categories
- article (11)
- enigma (1,669)
- enigma-book-1982 (70)
- microteasers-book-1986 (11)
- misc (5)
- project euler (2)
- puzzle (90)
- puzzle# (218)
- site news (81)
- tantalizer (227)
- tantalizer-book-1970 (13)
- teaser (7)
- today (1)
Site Stats
- 328,108 hits
Note: Apparently I misunderstood what it means for Debbie to “win in three moves”. (See below).
H starts by playing 11.
D then has to play one of 33, 55, 77. And any one of these can give D a guaranteed win in 3 moves.
If D’s first move is 55, then H can only respond with 5. D can then play 35 → (7) → 77, or 15 → (3) → 33/51 to win in 3 moves.
So this is probably the required solution, that D plays 55 as a first move.
However, if D’s first move is 33, then H can only respond with 3. D can then play 51, and as H cannot play D has won in just 2 moves.
Or, instead of 51, D can play 15, and then H can only respond with 5, and D can then play 55 to win in exactly 3 moves.
So if D’s first move is 33 they can also win in 2 or 3 moves, and it is up to D which path is followed. So this is also a viable solution.
And if D’s first move is 77, then play must proceed: 77 → (7) → 35 → (5). D can then play 55 and win in 3 moves, or 15 → (3) → 33/51, and win in 4 moves.
So it is also possible for D to guarantee a win in exactly 3 moves by playing 77 as a first move.
Hence, after H plays 11, they lose control of the game. It is possible for D to win in 2, 3, or 4 moves, and D can choose which of these paths to follow. Each of D’s moves can force a particular move for H, so H has no further influence on the game.
Solution: Debbie can guarantee a win in exactly 3 moves by playing 55. Or 77. Or 33. Which is any of the 3 permissible next moves.
D can win via any of the following paths:
There are further paths that end with D winning, but these require H to co-operate by making a choice that allows D to win.
This Python program find possible length 6 games.
Run: [ @replit ]
Assuming a unique solution, better wording would have been
“Debbie smiles, knowing that if she makes the right choice now she can win on her next move.” The three moves are hers, his, hers.
Ah. I see. Three more moves in the entire game, rather than three moves for Debbie. So the entire game consists of four moves in total (two moves each).
Yes. There is only one path with length 4 (shown above), so this does give a unique solution to the puzzle.