This is a solved example in Introduction to Probability by Tsitsiklis, page 26, example 1.11 A Class consists of 4 graduate and 12 undergraduate students is randomly divided into 4 groups of 4. What is the probability that each includes a graduate student?
I understand the combinatorial way to do this problem using multinomial theorem. I am here interested in the conditional probability approach.
Solution: Let us denote the four graduate students by 1,2,3,4 and consider the events $A_1$ ={students 1 and 2 are in different groups} $A_2$ = {students 1,2 and 3 are in different groups} $A_3$ ={students 1,2,3 and 4 are in different groups} We will calculate $P(A_3) = P(A_1 \cap A_2\cap A_3)= P(A_1)P(A_2|A_1)P(A_3|A_1\cap A_2)$ We have $P(A_1) =\frac{12}{15}$ since there are 12 students slot in groups other than the one of the student 1, and there are 15 student slots overall, excluding student 1. Similarly $P(A_2|A_1) =\frac{8}{14}$ and $P(A_3|A_1\cap A_2) =\frac{4}{13}$ and so $P(A_3) = \frac{12}{15} \times \frac{8}{14} \times \frac{4}{13}$
The question I have is how did he get $P(A_1)=\frac{12}{15}$ ? I understand that there are 4 graduate students who need to be in 4 different groups and along with 3 undergraduate students. I understand the reason for finding $P(A_1 \cap A_2 \cap A_3)$. What I don't understand is how he got $P(A_1) = \frac{12}{15}$. Do we have two groups of 4 students each with two graduate students in two different groups ? Can someone explain to me the size of the two groups we have so formed with $A_1$ and similarly with $A_2$ and $A_3$? If i have calculate $P(A_1),P(A_2|A_1),P(A_3|A_1\cap A_2)$ probabilities using counting how will i come to these numbers ? Thank you.