Given is a positive integer and a game board consisting of square fields arranged side by side, numbered from 0 to from left to right. At the beginning of the game, game pieces are located on field No. 0, and the other fields are empty.
A patient player now chooses for each move a field with pieces and moves one of them at most fields to the right. The piece must remain on the board. His goal is to move all pieces to field No. with a sequence of such moves.
Prove that the player cannot achieve this goal in fewer than moves. (Here, denotes the smallest integer not less than .)
Problem 1415
Official solution
The game pieces are indistinguishable and all have the same starting and target field. Therefore, a patient player can invent a rule that tells him which of the pieces on the selected field he should move.
A possible rule is obtained by firmly numbering the pieces from 1 to and in each move, after selecting the field, moving the piece with the highest number there.
Assume he moves the piece with the number to the right in this way. Then there cannot have been more than pieces on the selected field, because their numbers are at most equal to . Thus, piece is moved at most fields to the right each time. Since it is moved a total of exactly fields, at least moves are required. This holds for all with . Summing over yields the minimum number of required game moves according to the problem statement.
Hint: A proof by complete induction is just as doomed to fail as considerations of seemingly "optimal" strategies whose optimality can only be locally convincingly justified.
It can be shown that the exact value of the given term can only be achieved for .
## Solutions to the 2nd Selection Test 2018/2019