n passengers board an airplane with exactly n seats. The first passenger has lost the ticket and picks a seat randomly. But after that, the rest of the passengers will:
Take their own seat if it is still available, and
Pick other seats randomly when they find their seat occupied
Return the probability that thenthperson gets his own seat.
The problem has a recursive structure: the probability that the last passenger gets their seat is always 1/2 for n > 1. This is because after the first passenger picks a random seat, the process repeats itself for the remaining passengers, except when the first or last seat is chosen.