There is a question bugging me about counting / probability. So the question goes:
If I draw 2 balls from the box with 6 white balls and 4 red balls, what is the probability that 2nd ball is red?
Before asking the problem, I have a side-question. Is this statement same as:
What is the probability that at least one ball is red?
Back to the original question, to solve this, I have this equation. \begin{align} p(R_2) = p(R_2\cap W_1) + p(R_2 \cap R_1) \end{align} For clarification of the notation, $R_1$ means first ball is red $W_2$ mean second ball is white, and so on.
For this, I have two approaches.
Using conditional probability: \begin{align} p(R_2) &= p(R_2\cap W_1) &+& p(R_2 \cap R_1)\\ &=p(W_1)p(R_2|W_1) &+& p(R_1)p(R_2|R_1) \\ &=\frac{6}{10}\times \frac{4}{9} &+& \frac{4}{10}\times \frac{3}{9}\\ &=\frac{2}{5} \end{align}
Using counting techniques: \begin{align} p(R_2) &= p(R_2\cap W_1) &+& p(R_2 \cap R_1)\\ &= p(W_1\cap R_2) &+& p(R_1 \cap R_2)\\ &= \frac{_6C_1}{_{10}C_2} \times\frac{_4C_1}{_{10}C_2}&+&\frac{_6C_0}{_{10}C_2} \times\frac{_4C_2}{_{10}C_2}\\ &=\frac{24}{45} &+& \frac{6}{45}\\ &=\frac{2}{3} \end{align}
So I think both approaches make sense to me, but the results are different. And I don't know which one is the right one, or neither.
Please help me with this problem and I wonder how I should think through when I have this kind of question.
The two questions you state are different because in the second one you get $R_1,W_2$ into consideration while in the first one, you don't. As for the solutions, probabilistic one is the correct one (i.e. the first one).