The Gaussbot factory assembles robots. Each robot comes in one of
three colours: red, blue, or green. Each robot also has a number stamped
on its head: , , , or . The th robot assembled is the first robot to
have the same colour and the same number as a previously assembled
robot. What is the greatest possible value of ?
Problem 559
Pick one
Official solutions — 2
Solution 1
There are different
colours and different numbers,
and therefore
different kinds of robots that may be assembled. (These are R1, R2, R3,
R4, B1, B2, B3, B4, G1, G2, G3, G4, where R, B, G represent the colours red, blue, green.)
Since there are different kinds
of robots, it is possible that the first robots assembled are all different
from one another.
In this case, the th robot
assembled would be the first robot to have the same colour and the same
number as a previously assembled robot, and thus the greatest possible
value of is .
Notes:
It is possible that the first duplicate occurs earlier, but we
want the latest that it can occur.
There must be a duplicate robot among the first assembled, and so .
This solution makes use of the Pigeonhole principle – a
concept worth further investigation.
Solution 2
There are different
colours and different numbers,
and therefore
different kinds of robots that may be assembled. (These are R1, R2, R3,
R4, B1, B2, B3, B4, G1, G2, G3, G4, where R, B, G represent the colours red, blue, green.)
Since there are different kinds
of robots, it is possible that the first robots assembled are all different
from one another.
In this case, the th robot
assembled would be the first robot to have the same colour and the same
number as a previously assembled robot, and thus the greatest possible
value of is .
Notes:
It is possible that the first duplicate occurs earlier, but we
want the latest that it can occur.
There must be a duplicate robot among the first assembled, and so .
This solution makes use of the Pigeonhole principle – a
concept worth further investigation.