From a regular deck of 52 cards Let’s say I take 13 cards randomly and uniformly. Then someone takes 13 and then person 3 takes 13 and finally person 4 takes the remaining 13. each card is selected and uniformly. What is the probability each person has a queen if each person has a 4?
Edit: sorry guys for not putting my work I was just finishing up my solution, here it is, please let me know if it’s right or if I’m on the right track thanks. $ (4\binom{44}{11} *3\binom{33}{11}* 2\binom{22}{11})/\binom{48}{12}* \binom{36}{12}* \binom{24}{12}$
To compute the conditional probability, we first find the number of ways that each person gets a $4$. Well, there are $4!$ ways to hand out the $4$s, then $\binom{48}{12}$ ways to pick the remaining cards for the first person, $\binom{36}{12}$ ways to pick the remaining cards for the second person, and $\binom{24}{12}$ ways to pick the remaining cards for the third person. So, the total number of ways is $4! \binom{48}{12} \binom{36}{12} \binom{24}{12}$.
Now, we compute the probability that each person gets one $4$ and one $Q$. There are $(4!)^2$ ways to distribute the $4$ and $Q$ cards to each person. Following this, there are $\binom{44}{11}$ ways to complete the hand for the first person, $\binom{33}{11}$ for the second person, and $\binom{22}{11}$ for the third person. So, the number of successful ways is $(4!)^2 \binom{44}{11} \binom{33}{11} \binom{22}{11}$.
The desired probability is
$$\frac{(4!)^2 \binom{44}{11} \binom{33}{11} \binom{22}{11}}{4! \binom{48}{12} \binom{36}{12} \binom{24}{12}} = \frac{4! \binom{44}{11} \binom{33}{11} \binom{22}{11}}{\binom{48}{12} \binom{36}{12} \binom{24}{12}} = \boxed{\frac{576}{5405}}$$
The second fraction in the line above can be considered as giving out the $4$s initially, and computing the probability of each person getting one $Q$ given a deck with $48$ cards.