Conditional Probability

This topic has expert replies
Newbie | Next Rank: 10 Posts
Posts: 8
Joined: Mon Aug 03, 2015 1:32 am
Location: Egypt

Conditional Probability

by savary » Mon Oct 12, 2015 1:52 am
I came across this question while studying the first chapter of the book (Introduction to Probability, Bertsekas 2nd 2008). The question is a solved example but I didn't understand it. I hope if someone can explain how to solve it rather than giving me the answer.

Q. A class consisting for 4 graduate and 12 undergraduate students is randomly divided into 4 groups of 4. What is the probability that each group includes a graduate student. [We interpret "randomly" to mean that given the assignment of some students to certain slots, any of the remaining students is equally likely to be assigned to any of the remaining slots]

User avatar
GMAT Instructor
Posts: 15539
Joined: Tue May 25, 2010 12:04 pm
Location: New York, NY
Thanked: 13060 times
Followed by:1906 members
GMAT Score:790

by GMATGuruNY » Mon Oct 12, 2015 2:59 am
savary wrote:A class consisting for 4 graduate and 12 undergraduate students is randomly divided into 4 groups of 4. What is the probability that each group includes a graduate student.
Let the 4 grad students be A, B, C and D.

Among the 4 groups of 4 are a total of 16 positions.
Student A can occupy any of the 16 positions.
.
Of the 15 remaining positions, 12 are not in A's group.
Thus:
P(B is not in A's group) = 12/15.

Of the 14 remaining positions, 8 are not in A's group or B's group.
Thus:
P(C is not in A's group or B's group) = 8/14.

Of the 13 remaining positions, 4 are not in A's group, B's group, or C's group.
Thus:
P(D is not in A's group, B's group, or C's group) = 4/13.

Since we want all of these events to happen, we MULTIPLY the probabilities:
12/15 * 8/14 * 4/13 = 64/455.
Private tutor exclusively for the GMAT and GRE, with over 20 years of experience.
Followed here and elsewhere by over 1900 test-takers.
I have worked with students based in the US, Australia, Taiwan, China, Tajikistan, Kuwait, Saudi Arabia -- a long list of countries.
My students have been admitted to HBS, CBS, Tuck, Yale, Stern, Fuqua -- a long list of top programs.

As a tutor, I don't simply teach you how I would approach problems.
I unlock the best way for YOU to solve problems.

For more information, please email me (Mitch Hunt) at [email protected].
Student Review #1
Student Review #2
Student Review #3

Newbie | Next Rank: 10 Posts
Posts: 8
Joined: Mon Aug 03, 2015 1:32 am
Location: Egypt

by savary » Mon Oct 12, 2015 3:31 am
Thank you Mitch, this was very helpful. :)

GMAT Instructor
Posts: 2630
Joined: Wed Sep 12, 2012 3:32 pm
Location: East Bay all the way
Thanked: 625 times
Followed by:119 members
GMAT Score:780

by Matt@VeritasPrep » Wed Oct 14, 2015 11:59 pm
I have this book on my shelf! (I can see why the worked example didn't help; the problem sets are great, but Bertsekas himself can be terse and tough to follow.)

Let me add a combinatorial approach, since this generalizes well to other problems you'll encounter later in real probability.

When we go to pick the first group, we want ONE grad and THREE undergrads. This can happen in 4*(12 choose 3) ways, since we're choosing one of four grads and three of twelve undergrads. This gives Target / Total = 4*(12 choose 3) / (16 choose 4). (The total is just all the ways we could randomly pick four people of the sixteen.)

When we go to pick the second group, we have 12 students left, and again want ONE grad and THREE undergrads. This can happen in 3*(9 choose 3) ways. This gives Target / Total = 3*(9 choose 3) / (12 choose 4)

When we go to pick the third group, similar logic gives us 2*(6 choose 3) ways. This gives Target / Total = 2*(6 choose 3) / (8 choose 4).

Since the fourth group is now predetermined, we don't have to bother with it.

Multiplying all the probabilities above gives us

4 * 3 * 2 * (12! / 3!9!) * (9! / 3!6!) * (6! / 3!3!) / ((16! / 4!12!) * (12! / 4!8!) * (8! / 4!4!))

As you can see when you write it out, this cleans up much more nicely than you'd expect, and leaves 64/455.

Newbie | Next Rank: 10 Posts
Posts: 8
Joined: Mon Aug 03, 2015 1:32 am
Location: Egypt

by savary » Thu Dec 03, 2015 4:51 am
Matt, I'm sorry I didn't read your post earlier. I was going through the problems again after studying combinatorics. Actually, I was using the book along with video lectures from MIT OCW course entitled "Probability Models and Axioms". Having done the problem both ways, I found the combinatorial approach easier to follow but more time-consuming in calculations.