I was solving a probability problem which is stated like that:
Consider there are three seats and three people. First person seats on a random seat and two others choose their seats based on the following logic: if their seat is free they take it, if it's taken they take a random seat. What is the probability that the last person will take their seat?
The solution I came up with is the following:
$$A\ -\ last\ person\ seats\ in\ their\ seat$$ $$B_i\ -\ first\ person\ seats\ in\ the\ seat\ i$$ $$P(A)=P(B_1)\cdot{P(A|B_1)} + P(B_2)\cdot{P(A|B_2)} + P(B_3)\cdot{P(A|B_3)}={1\over3}\cdot1+{1\over3}\cdot{1\over2}+{1\over3}\cdot0={1\over2}$$
This answer is correct according to the book. What I dont really undetrstand is why I can't calculate it like that: $$P(A)=P(B)\cdot{P(A|B)} + P(1-B)\cdot{P(A|1-B)}={1\over3}\cdot1+{2\over3}\cdot{1\over3}={5\over9}$$ where B is event of the first passenger landing in their seat. My logic is that when first passenger chooses first seat the last one will always land in their seat so conditional probability here is 1. If the first passenger doesn't choose their seat we have 3 cases(2,1,3|3,1,2|3,2,1) from which only one suffices us, so conditional probability is $${1\over3}$$ here. $$B\ and\ 1-B$$ are exclusive so it's not the problem here obviously. I feel that I'm missing something very trivial here.