I'm working with a problem stated as follows:
A sign reads IDAHO. Two letters are removed and put back at random, each equally likely to be put upside down as in the correct orientation. What is the probability that the sign still reads IDAHO?
So, we form our events as:
- $A = \{$IDAHO is spelt correctly$\}$
- $B = \{$2 "symmetric" characters are chosen$\}$
- $C = \{$1 "symmetric" and 1 "unsymmetric" character is chosen$\}$
- $D = \{$2 "unsymmetric" characters are chosen$\}$
Where symmetric means that no matter of orientation, the character looks just like it used to before.
Notice, $B,C,D$ form a partition of our sample space. Hence, the the total law of probability gives us:
$$P(A) = P(A|B)P(B) + P(A|C)P(C) + P(A|D)P(D) $$
We trivially know that $P(A|B) = 1/2$, since in choosing two symmetric letters.
Furthermore, $P(B) = \frac{\begin{pmatrix} 3 \\2 \end{pmatrix}}{\begin{pmatrix} 5 \\2 \end{pmatrix}} = 3/10$
Then, we have $P(A|C) = 2/4$, since in choosing 1 symmetric letter and 1 unsymmetric, we have to get the correct position on the unsymmetric letter, whereas the symmetric letter can be switched in orientation without changing the word. Meaning we have 2 out of a total 4 possible scenarios. 4 comes from the fact that we can choose to place the symmetric letter in 2 positions, and orient it in 2 ways, however, these are equivalent. Then, the latter unsymmetric letter has already been given a position, but can be oriented in 2 distinct ways.
Furthermore, $P(C) = \frac{\begin{pmatrix} 3 \\2 \end{pmatrix}\begin{pmatrix} 2 \\1 \end{pmatrix}}{\begin{pmatrix} 5 \\2 \end{pmatrix}} = 3/5$
Lastly, $P(A|D) = 1/6$, since we only have one scenario in which it can become the same word, and the total scenarios are given as we choose a position for the first letter (2), then we choose orientation (2), the latter letter has already been given a position and orientation can be choosen (2).
Also $P(D) = \frac{\begin{pmatrix} 2 \\ 2\end{pmatrix}}{\begin{pmatrix} 5 \\2 \end{pmatrix}} = 1/10$
Finally, we have $P(A) = 1/2 \cdot 3/10 + 1/2 \cdot 3/5 + 1/6 \cdot 1/10 = 7/15$, which according to the answer sheet is wrong ($5/16$).
Does anyone of you guys see the mistake. I've tried to find it and gone through my argumentation but can't find the mistake.
Thanks.