There is an auditorium with $n$ distinguishable seats. There are $n$ people, each assigned to a unique seat such that all seats are filled and no $2$ people are assigned the same seat.
People start entering the auditorium one by one. Person $1$ enters the room, but forgets their assigned seat and decides to go to a random seat (any of $n$ seats equally likely to be chosen). Person $2$ enters the room and goes to their assigned seat if it is free and to a random seat (any free seat equally likely to be chosen) if not. Every person after follows person $2$'s procedure thereafter.
What is the probability that the last person goes to their assigned seat?
Context: teacher brought it up in a class as a problem.
I think the desired probability is $1/2$ because we can consider simple cases like $n=2$ or $n=3$. If we consider a string of length $3$, with the assigned seating being $123$, person one forgetting their seat results in $(1\vert\cdot\vert\cdot)$ or $(\cdot\vert1\vert\cdot)$ or $(\cdot\vert\cdot\vert1)$. In the first and third case person $2$ sits in their own seat because it's free and the last person goes to their seat in the first case only. In the second case it is equally likely whether the last person ends up in their seat or not, so the total probability is $1/2$.
I'd rather take partial solutions or hints because I want to solve it myself.