π΅π΄ Last Ball
Balls are repeatedly removed from a bag according to a simple rule. The individual draws are randomβbut the color of the final ball is actually predetermined.
Click a specific pair to force that case, or use a random draw.
Look only at the number of red balls. Every possible move changes the red count by either 0 or β2.
Therefore:
R0 mod 2 = 0 = R1 mod 2 = β¦ = Rfinal mod 2
The key insight
Don't try to predict the sequence of random draws. Instead, find something that cannot change. Here that quantity is the parity of the number of red balls. If red starts even, the final ball must be blue. If red starts odd, the final ball must be red.