Re: Friday puzzler -- a simple game
Larry Barrett
Here's another way to look at this. Start with just three numbers, 1,2,3.
The first player erases the 1, leaving 2,3 which = 0 mod 5. Game over. This is a trivial case since the second player does not have a chance to play.
Now go to 4 numbers, 1,2,3,4.
The first player can erase any number, eliminating one combination. Say he erases 1, which eliminates the 1,4 combination. The second player erases either the 2 or 3 which eliminates the other combination. Second player wins.
Now go to 5 numbers, 1,2,3,4,5.
The first player can erase the 5 which is not part of any combination. The second player can erase any remaining number, eliminating one combination. The first player then erases the other part of the first combination, leaving two numbers that =0 mod 5. First player wins. (If the first player erases anything else, it eliminates one combination. Then the second can eliminate the other combination and the second player would win.)
Now go to 6 numbers, 1,2,3,4,5,6.
Here the combinations that = 0 mod 5 are 1,4 2,3 4,6. The first players best move is to erase 5, which is not part of any combination. The second player can erase 1,2,3, or 6, eliminating one combination, or can erase 4 which eliminates 2 combinations, which seems like his best move. At this point, the only combination that = 0 mod 5 is 2,3; 4 and 5 have been erased and 1,6 are now not part of any combination. No matter what the first player does, the second player can erase either 2 or 3, leaving no combinations. Second player wins.
My observation at this point is that there is at least one non-trivial game (5 numbers) where the first player can win. Also, once the number digits increases beyond 5 there are combinations where one number is part of several combinations (e.g. 1,4 4,6) and erasing that number (4 in this case) eliminates more than one other number. When there are multiple un-paired numbers, the first player can erase one at a time, but the second player can proceed to erase numbers that are part of combinations; it seems the second player can always win in these situations. So I agree with David.