The Monty Hall problem (https://en.wikipedia.org/wiki/Monty_Hall_problem) is about a game show in which the player is given the choice of three doors. There's a car behind one of the doors and a goat behind the others. The players is asked to pick a door, and he picks door number 1 which remains closed for now. The host, who knows where the car is, then opens door number 3, which has a goat, and then asks the player if he wishes to stay on door 1 or change to door 2.
Now, since the host knows where the car is - then the odds for door number 2 are obviously higher, and the player should switch from door 1 to door 2 (.. because it has 2/3 chance to have the car).
My question is: If the host doesn't know where the car is, and he randomly picks door 3 - are the odds the same as in the above scenario (i.e. door 2 has 2/3 chance to be the one with the car), or is it a different case in which doors 1 and 2 have 50% chance each?
Thanks! Dan
Your intuition is correct: It becomes a toss-up whether you stay or switch.
We make the following assumptions:
Assume, without loss of generality, that you choose door $1$ and Monty opens door $2$ to reveal a goat. Before he did so, there were three equally likely positions for the car. Afterwards, he has eliminated one of the options, but because he effectively does not know where the car is, he has given you no additional information with respect to doors $1$ and $3$. Therefore, they remain equally likely as they did before.
If we like, we can bring the machinery of Bayes's Law to bear. Again, assume you open door $1$. Then let $C_k$ ($k = 1, 2, 3$) be the event that the car is behind door $k$, and let $D_k$ ($k = 1, 2, 3$) be the event that Monty opens door $k$. Then the probability that the car is behind door $1$, given that Monty opened door $2$ and the car wasn't behind door $2$, is
\begin{align} P(C_1 \mid D_2, \neg C_2) & = \frac{P(D_2 \mid C_1, \neg C_2)P(C_1 \mid \neg C_2)} {P(D_2 \mid \neg C_2)} \\ & = P(C_1 \mid \neg C_2) \\ & = \frac12 \end{align}
where the middle equality obtains because we assume that $D_2$ is independent of the location of the car. The difference between this situation and the usual interpretation is that in the latter case, we assume that Monty never opens the door where the car is. So that middle equality doesn't obtain.