Last visit was: 11 Jun 2026, 00:19 It is currently 11 Jun 2026, 00:19
Close
GMAT Club Daily Prep
Thank you for using the timer - this advanced tool can estimate your performance and suggest more practice questions. We have subscribed you to Daily Prep Questions via email.

Customized
for You

we will pick new questions that match your level based on your Timer History

Track
Your Progress

every week, we’ll send you an estimated GMAT score based on your performance

Practice
Pays

we will pick new questions that match your level based on your Timer History
Not interested in getting valuable practice questions and articles delivered to your email? No problem, unsubscribe here.
Close
Request Expert Reply
Confirm Cancel
User avatar
Bunuel
User avatar
Math Expert
Joined: 02 Sep 2009
Last visit: 10 Jun 2026
Posts: 111,194
Own Kudos:
820,001
 [1]
Given Kudos: 106,749
Products:
Expert
Expert reply
Active GMAT Club Expert! Tag them with @ followed by their username for a faster response.
Posts: 111,194
Kudos: 820,001
 [1]
Kudos
Add Kudos
1
Bookmarks
Bookmark this Post
User avatar
Bunuel
User avatar
Math Expert
Joined: 02 Sep 2009
Last visit: 10 Jun 2026
Posts: 111,194
Own Kudos:
820,001
 [1]
Given Kudos: 106,749
Products:
Expert
Expert reply
Active GMAT Club Expert! Tag them with @ followed by their username for a faster response.
Posts: 111,194
Kudos: 820,001
 [1]
1
Kudos
Add Kudos
Bookmarks
Bookmark this Post
User avatar
walker
Joined: 17 Nov 2007
Last visit: 25 May 2025
Posts: 2,396
Own Kudos:
Given Kudos: 362
Concentration: Entrepreneurship, Other
Schools: Chicago (Booth) - Class of 2011
GMAT 1: 750 Q50 V40
Expert
Expert reply
Schools: Chicago (Booth) - Class of 2011
GMAT 1: 750 Q50 V40
Posts: 2,396
Kudos: 10,883
Kudos
Add Kudos
Bookmarks
Bookmark this Post
User avatar
mariyea
Joined: 30 Nov 2010
Last visit: 06 Dec 2011
Posts: 185
Own Kudos:
Given Kudos: 66
Schools:UC Berkley, UCLA
Posts: 185
Kudos: 281
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Example #1
Q: There are 8 employees including Bob and Rachel. If 2 employees are to be randomly chosen to form a committee, what is the probability that the committee includes both Bob and Rachel?
Solution:

1) combinatorial approach: The total number of possible committees is N=C^8_2. The number of possible committee that includes both Bob and Rachel is n=1.
P = \frac{n}{N} = \frac{1}{C^8_2} = \frac{1}{28}

2) reversal combinatorial approach: Instead of counting probability of occurrence of certain event, sometimes it is better to calculate the probability of the opposite and then use formula p = 1 - q. The total number of possible committees is N=C^8_2. The number of possible committee that does not includes both Bob and Rachel is:
m = C^6_2 + 2*C^6_1 where,
C^6_2 - the number of committees formed from 6 other people.
2*C^6_1 - the number of committees formed from Rob or Rachel and one out of 6 other people. Why is it multiplied by 2? Can someone pls explain it to me?
P = 1- \frac{m}{N} = 1 - \frac{C^6_2 + 2*C^6_1}{C^8_2}
P = 1 - \frac{15+2*6}{28} = 1 - \frac{27}{28} = \frac{1}{28}
User avatar
catty2004
Joined: 30 May 2008
Last visit: 01 Nov 2016
Posts: 33
Own Kudos:
Given Kudos: 26
Posts: 33
Kudos: 997
Kudos
Add Kudos
Bookmarks
Bookmark this Post
walker
PROBABILITY

This post is a part of [GMAT MATH BOOK]

created by: walker
edited by: bb, Bunuel

--------------------------------------------------------

This topic is included in GMAT ToolKit App (iPhone/iPod Touch)
[read more] [AppStore]



--------------------------------------------------------

A few ways to approach a probability problem

There are a few typical ways that you can use for solving probability questions. Let's consider example, how it is possible to apply different approaches:

Example #1
Q: There are 8 employees including Bob and Rachel. If 2 employees are to be randomly chosen to form a committee, what is the probability that the committee includes both Bob and Rachel?
Solution:

3) probability approach: The probability of choosing Bob or Rachel as a first person in committee is 2/8. The probability of choosing Rachel or Bob as a second person when first person is already chosen is 1/7. The probability that the committee includes both Bob and Rachel is.
\(P = \frac{2}{8} * \frac{1}{7} = \frac{2}{56} = \frac{1}{28}\)

4) reversal probability approach: We can choose any first person. Then, if we have Rachel or Bob as first choice, we can choose any other person out of 6 people. If we have neither Rachel nor Bob as first choice, we can choose any person out of remaining 7 people. The probability that the committee includes both Bob and Rachel is.
\(P = 1 - (\frac{2}{8} * \frac{6}{7} + \frac{6}{8} * 1) = \frac{2}{56} = \frac{1}{28}\)


Example #2
Q: Given that there are 5 married couples. If we select only 3 people out of the 10, what is the probability that none of them are married to each other?
Solution:

1) combinatorial approach:
\(C^5_3\) - we choose 3 couples out of 5 couples.
\(C^2_1\) - we chose one person out of a couple.
\((C^2_1)^3\) - we have 3 couple and we choose one person out of each couple.
\(C^{10}_3\) - the total number of combinations to choose 3 people out of 10 people.

\(p=\frac{C^5_3*(C^2_1)^3}{C^{10}_3}=\frac{10*8}{10*3*4} = \frac{2}{3}\)

2) reversal combinatorial approach: In this example reversal approach is a bit shorter and faster.
\(C^5_1\) - we choose 1 couple out of 5 couples.
\(C^8_1\) - we chose one person out of remaining 8 people.
\(C^{10}_3\) - the total number of combinations to choose 3 people out of 10 people.

\(p=1 - \frac{C^5_1*C^8_1}{C^{10}_3}=1 - \frac{5*8}{10*3*4} = \frac{2}{3}\)

3) probability approach:
1st person: \(\frac{10}{10} = 1\) - we choose any person out of 10.
2nd person: \(\frac{8}{9}\) - we choose any person out of 8=10-2(one couple from previous choice)
3rd person: \(\frac{6}{8}\) - we choose any person out of 6=10-4(two couples from previous choices).

\(p = 1*\frac{8}{9}*\frac{6}{8}=\frac{2}{3}\)


Probability tree


Official GMAC Books:

The Official Guide, 12th Edition: DT #4; DT #7; PS #12; PS #67; PS #105; PS #158; PS #174; PS #214; DS #3; DS #107;
The Official Guide, Quantitative 2th Edition: PS #79; PS #160;
The Official Guide, 11th Edition: DT #4; DT #7; PS #10; PS #64; PS #173; PS #217; PS #231; DS #82; DS #114;

Generated from [GMAT ToolKit]


Resources

Probability DS problems: [search]
Probability PS problems: [search]

Walker's post with Combinatorics/probability problems: [Combinatorics/probability Problems]
Bullet's post with probability problems: [Combined Probability Questions]
-------------------------------------------------------

Attachment:
Math_probability_I_head.png
Attachment:
Math_probability_I_tail.png
Attachment:
Math_probability_I_dice.png
Attachment:
Math_probability_I_marbles.png
Attachment:
Math_probability_tree.png
Attachment:
Math_icon_probability.png


Can someone explain the reversal probability approach under the first bold face part?

Also please please explain the red text under the married couple example, how did you know to choose 3 couple out of 5? Is it because the question asks for 3 ppl not married? Im completely lost on this example and particularly on the reversal combinatorial approach......
User avatar
idinuv
Joined: 21 Mar 2013
Last visit: 05 Aug 2023
Posts: 31
Own Kudos:
Given Kudos: 56
GMAT Date: 03-20-2014
Kudos
Add Kudos
Bookmarks
Bookmark this Post
fruit
Q: If the probability of a certain event is p, what is the probability of it occurring k times in n-time sequence?
(Or in English, what is the probability of getting 3 heads while tossing a coin 8 times?)
Are there any GMAT questions testing this concept?
User avatar
ShantnuMathuria
Joined: 18 Sep 2013
Last visit: 28 Sep 2014
Posts: 7
Own Kudos:
Given Kudos: 18
Posts: 7
Kudos: 1
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Dear Walker

I was trying your given example- Given that there are 5 married couples. If we select only 3 people out of the 10, what is the probability that none of them are married to each other? with other method but the answer is coming wrong.

I did 10c1X8c1X6c1/ 10c3. We can select any one random person from 10 then to avoid pairing we remove his/her counterpart so next selection becomes 8c1 and similarly 6c1...but the probability is coming out to be 4. Where am I wrong?

Thanks for your help! :)
avatar
Aditi10
Joined: 04 Feb 2017
Last visit: 05 Oct 2020
Posts: 9
Own Kudos:
Given Kudos: 197
Posts: 9
Kudos: 261
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Example #2
Q: Given that there are 5 married couples. If we select only 3 people out of the 10, what is the probability that none of them are married to each other?
Solution:

1) combinatorial approach:
\(C^5_3\) - we choose 3 couples out of 5 couples.
\(C^2_1\) - we chose one person out of a couple.
\((C^2_1)^3\) - we have 3 couple and we choose one person out of each couple.
\(C^{10}_3\) - the total number of combinations to choose 3 people out of 10 people.

\(p=\frac{C^5_3*(C^2_1)^3}{C^{10}_3}=\frac{10*8}{10*3*4} = \frac{2}{3}\)

2) reversal combinatorial approach: In this example reversal approach is a bit shorter and faster.
\(C^5_1\) - we choose 1 couple out of 5 couples.
\(C^8_1\) - we chose one person out of remaining 8 people.
\(C^{10}_3\) - the total number of combinations to choose 3 people out of 10 people.

\(p=1 - \frac{C^5_1*C^8_1}{C^{10}_3}=1 - \frac{5*8}{10*3*4} = \frac{2}{3}\)

3) probability approach:
1st person: \(\frac{10}{10} = 1\) - we choose any person out of 10.
2nd person: \(\frac{8}{9}\) - we choose any person out of 8=10-2(one couple from previous choice)
3rd person: \(\frac{6}{8}\) - we choose any person out of 6=10-4(two couples from previous choices).

\(p = 1*\frac{8}{9}*\frac{6}{8}=\frac{2}{3}\)


--------------------------------------------------------


Didn't follow the reverse combinatorial approach here. The question asks the probability that none of the 3 people selected would be married. But the approach is taking 1 married couple and 1 unmarried person. What am I missing?
avatar
Laxmib
Joined: 01 May 2017
Last visit: 25 Aug 2017
Posts: 2
Own Kudos:
Given Kudos: 18
Location: India
Concentration: Finance, Operations
WE:Engineering (Computer Software)
Posts: 2
Kudos: 5
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Can any one help me solve below example and how the probability tree works?

Q: Julia and Brian play a game in which Julia takes a ball and if it is green, she wins. If the first ball is not green, she takes the second ball (without replacing first) and she wins if the two balls are white or if the first ball is gray and the second ball is white. What is the probability of Julia winning if the jar contains 1 gray, 2 white and 4 green balls?
User avatar
azelastine
Joined: 10 Nov 2013
Last visit: 13 Aug 2017
Posts: 15
Own Kudos:
Given Kudos: 7
Posts: 15
Kudos: 11
Kudos
Add Kudos
Bookmarks
Bookmark this Post
This is very basic but I am getting confused by the concepts.

If a fair coin is flipped three times, what is the probability that it
comes up heads all three times?

So the way I understand it, P of getting tails is 1/2*1/2*1/2=1/8

Because each event is independent from one another, I calculate the probability of getting heads as 1-1/8=7/8 but the right answer is 1/8....

What am I doing wrong?
User avatar
ganand
Joined: 17 May 2015
Last visit: 19 Mar 2022
Posts: 198
Own Kudos:
Given Kudos: 85
Posts: 198
Kudos: 3,876
Kudos
Add Kudos
Bookmarks
Bookmark this Post
azelastine

Thanks for the explanation, this is very helpful.

Could you help me understand the difference between this and the following problem?

A fair coin is flipped twice. What is the probability that the coin lands showing heads on the first flip, second flip or both?

The solution to this question is two-step: 1) P (two tails)=1/4, 2) 1-1/4=3/4

Hi azelastine,

I'll try to explain the difference.

Quote:
A fair coin is flipped twice. What is the probability that the coin lands showing heads on the first flip, second flip or both?

Sample space: {HH, HT, TH, TT}

Favorable event = {HH, HT, TH} and complementary event = {TT}

In two ways you can solve this question.

1. Compute the probability of the favorable event
In this case required probability = P(HH) + P(HT) + P(TH) =\(\frac{1}{2} \times \frac{1}{2} + \frac{1}{2} \times \frac{1}{2} + \frac{1}{2} \times \frac{1}{2} = \frac{3}{4}\)
or
2. Compute the probability of complementary event and subtract it from 1. You have solved it using this method.

In general, when a complementary event is small then use the 2nd approach.
The complementary approach can also be used in P&C questions.

Please go through the first post of the thread. These points are discussed in detail with examples.

Hope this helps.
avatar
cmatyrau
Joined: 23 Jul 2010
Last visit: 28 Jan 2025
Posts: 2
Own Kudos:
Given Kudos: 155
Location: Kazakhstan
Concentration: Accounting, Technology
GPA: 4
WE:Accounting (Energy)
Posts: 2
Kudos: 5
Kudos
Add Kudos
Bookmarks
Bookmark this Post
walker



2) reversal combinatorial approach: Instead of counting probability of occurrence of certain event, sometimes it is better to calculate the probability of the opposite and then use formula p = 1 - q. The total number of possible committees is \(N=C^8_2\). The number of possible committee that does not includes both Bob and Rachel is:
\(m = C^6_2 + 2*C^6_1\) where,
\(C^6_2\) - the number of committees formed from 6 other people.
\(2*C^6_1\) - the number of committees formed from Rob or Rachel and one out of 6 other people.


Could you please confirm if 2 in 2*C^6_1 above is the result of C^2_1?
avatar
debtanuB
Joined: 22 Feb 2017
Last visit: 09 Oct 2021
Posts: 27
Own Kudos:
Given Kudos: 141
Affiliations: National Institute of Technology, Durgapur
Location: India
GPA: 3.6
WE:Engineering (Manufacturing)
Posts: 27
Kudos: 40
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Bunuel
ShantnuMathuria
Dear Walker

I was trying your given example- Given that there are 5 married couples. If we select only 3 people out of the 10, what is the probability that none of them are married to each other? with other method but the answer is coming wrong.

I did 10c1X8c1X6c1/ 10c3. We can select any one random person from 10 then to avoid pairing we remove his/her counterpart so next selection becomes 8c1 and similarly 6c1...but the probability is coming out to be 4. Where am I wrong?

Thanks for your help! :)

The following post might help: https://gmatclub.com/forum/if-4-people-a ... ml#p764040

Also check similar questions to practice:
https://gmatclub.com/forum/a-committee-o ... 30617.html
https://gmatclub.com/forum/if-4-people-a ... 99055.html
https://gmatclub.com/forum/a-committee-o ... 94068.html
https://gmatclub.com/forum/if-a-committe ... 88772.html
https://gmatclub.com/forum/a-comittee-of ... 30475.html
https://gmatclub.com/forum/a-committee-o ... 01784.html
https://gmatclub.com/forum/a-group-of-10 ... 13785.html
https://gmatclub.com/forum/if-there-are- ... 99992.html
https://gmatclub.com/forum/given-that-th ... 58640.html


Total outcomes= 10C3=120

Favourable outcomes= (5C2x3C1 + 5C2x3C1 + 5C3 +5C3) = (30 + 30 + 10 + 10) = 80
[Since, if we select 2 females from 5 couple pairs then we have to choose 1 male from remaining 3 pairs=>none are married to each other ; In the same way we can choose 2 males and 1 female ; we can also choose 3 males out of 5 pairs=>none are married to each other ; again we can choose 3 females out of 5 pairs ; all the events are mutually exclusive so we add them;]

P(selected 3 ppl are not married to each other)=80/120=2/3

Bunuel Is my way of approaching this problem right??
User avatar
jmwon
Joined: 26 May 2019
Last visit: 27 Jan 2021
Posts: 30
Own Kudos:
Given Kudos: 248
Posts: 30
Kudos: 53
Kudos
Add Kudos
Bookmarks
Bookmark this Post
I am having trouble understanding the combinatorial and reversal combinatorial approach in terms of the logic of calculating the notation from this explanation.

Example #1 under "A few ways to approach a probability problem": \(P=\frac{n}{N}\) where N = \(C |_2^8\) I am not understanding at all how you go from \(C |_2^8\) to 28. Would anyone be willing to help explain what I am missing? At first I thought it was factorials \(\frac{8!}{2!}\) but that does not equal 28. I understand the regular probability approach and reversal probability approach, but right now am completely lost on the combinatorial.

Any help explaining would be greatly appreciated!
User avatar
ksht
Joined: 20 Mar 2020
Last visit: 05 Feb 2021
Posts: 73
Own Kudos:
Given Kudos: 379
Posts: 73
Kudos: 53
Kudos
Add Kudos
Bookmarks
Bookmark this Post
walker
PROBABILITY
Example #1
Q: There are 8 employees including Bob and Rachel. If 2 employees are to be randomly chosen to form a committee, what is the probability that the committee includes both Bob and Rachel?
Solution:


4) reversal probability approach: We can choose any first person. Then, if we have Rachel or Bob as first choice, we can choose any other person out of 6 people. If we have neither Rachel nor Bob as first choice, we can choose any person out of remaining 7 people. The probability that the committee includes both Bob and Rachel is.
\(P = 1 - (\frac{2}{8} * \frac{6}{7} + \frac{6}{8} * 1) = \frac{2}{56} = \frac{1}{28}\)

Example #2
Q: Given that there are 5 married couples. If we select only 3 people out of the 10, what is the probability that none of them are married to each other?

I have a doubt in example 1 and 2, both related reversal probability approach. Can you please point the mistake in my method below:
Example 1

Case 1: One person out of Rachel or Bob, then other person can be anyone
Case 2: Any person in group except Rachel or Bob.

Prob. of case 1: \(\frac{2}{8} * \frac{6}{7} \)- one person either Bob or Rachel - 2 out of 8, second person anyone except Bob or Rachel - 6 out of 7
Prob. of case 2: \(\frac{6}{8} * \frac{5}{7} \)- one person anyone except Bob or Rachel - 6 out of 8, second person anyone except Bob or Rachel - 5 out of 7
\(P = 1 - (\frac{2}{8} * \frac{6}{7} + \frac{6}{8} * \frac{5}{7}) = \frac{14}{56} = \frac{7}{28}\)

I feel method mentioned by 'walker' has repeated cases - when bob is selected in 1st position in some cases and then in second position in other cases - because we need selection here not permutations. Please clarify my doubt

Example 2
reversal probability approach : 1 - Probability when out of 3 person, two persons are a couple.
Prob. of selecting any one = \(\frac{1}{10} \)
Prob. of selecting the partner of the one selected = \(\frac{1}{9} \)
Prob. that third person be anyone = 1
So, Probability that out of 3 person, two persons are a couple = \(\frac{1}{10} * \frac{1}{9} * 1 \) = \(\frac{1}{90} \)
So, Probability that 3 persons in group be anyone but a couple = 1 - \(\frac{1}{90} \) = \(\frac{89}{90} \)

I understand my answers are coming out to be wrong but please point out the mistakes in my approach. Appreciate your help a lot !
Thanks in advance
User avatar
AyeeshaJ
Joined: 08 Aug 2019
Last visit: 07 Dec 2021
Posts: 18
Own Kudos:
Given Kudos: 136
GMAT 1: 700 Q50 V34
GPA: 3.5
Products:
GMAT 1: 700 Q50 V34
Posts: 18
Kudos: 41
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Hello Bunuel souvik101990,

I'd like you to help me understand the significance of a concept.

Ex: A box contains 26 blocks, each listing a unique English alphabet. If 3 blocks are picked at a time, what is the probability that all 3 are vowels?

Approach 1: 5C3 / 26C3

Approach 2 : (5C1/26C1) * (4C1/25C1) * (3C1/24C1)

This approach gives the same answer as Approach 1 does; however, since there is no order mentioned why this approach works? What is the logical significance of this approach?

Approach 3 : (5C1 * 4C1 * 3C1 / 26C3)

What is the significance of this approach. Does it mean the same as approach 2 does?

For long I have struggled to understand this conceptual nuance.

Much appreciated,

Thanks
User avatar
FaxBro
Joined: 05 Jul 2020
Last visit: 10 Feb 2024
Posts: 15
Own Kudos:
Given Kudos: 18
Location: India
Concentration: Finance, Marketing
Schools: LBS '23 (A)
GMAT 1: 640 Q47 V31
GMAT 2: 710 Q49 V37
WE:Marketing (Consulting)
Schools: LBS '23 (A)
GMAT 2: 710 Q49 V37
Posts: 15
Kudos: 8
Kudos
Add Kudos
Bookmarks
Bookmark this Post
jasonedward
I'm having a little trouble with the solution to a sample problem in MGMAT Word Translations (3rd Ed) p. 99-100.

Q: "A medical researcher must choose one of 14 patients to receive an experimental medicine called Progaine. The researcher must then choose one of the remaining 13 patients to receiver another medicine, called Ropecia. Finally, the researcher administers a placebo to one of the remaining 12 patients. All choices are equally random. If Donald is one of the 14 patients, what is the probability that Donald receivers either Prograine or Ropecia?"

I thought this was a simple "without replacement" question.

Probability of Donald getting Progaine: 1/14
Probability of Donald getting Ropecia after one patient is removed from the pool: 1/13

(1/14)+(1/13) = 27/182

The book says the answer is

Probability of Donald getting Prograine: 1/14
Probability of Donald getting Ropecia: 1/14

(1/14)+(1/14) = 1/7

Anyone see why this is not a "without replacement" problem? I'm stumped.


**********************************************************************************

Probability of Donald getting Progaine: 1/14
Probability of Donald getting Ropecia after one patient is removed from the pool = Probability of Donald NOT getting Progaine * Probability of Donald Getting Ropecia = 13/14 * 1/13 = 1/14.

(1/14)+(1/14) = 1/7.

Hope this helps ! :)
User avatar
shrgmat
Joined: 11 Nov 2020
Last visit: 25 Dec 2021
Posts: 36
Own Kudos:
Given Kudos: 82
Posts: 36
Kudos: 18
Kudos
Add Kudos
Bookmarks
Bookmark this Post
bb
Wow - between Walker and Bunuel, we have Math covered.
Great job!

Hi folks,

Example #1
Q: There are 5 chairs. Bob and Rachel want to sit such that Bob is always left to Rachel. How many ways it can be done ?
Solution: Because of symmetry, the number of ways that Bob is left to Rachel is exactly 1/2 of all possible ways:
N=12∗P52=10



I think I am missing something silly here. So, let's say I consider Bob & Rachel as 1 unit - with proper arrangement (meaning, BR (not RB)).
I have 4 items. No of possible arrangements is 4! = 24.

What's wrong?

If you are arranging 2 objects into 5 slots where 'order' matters (meaning ABCDE is different from BACDE), you do 5P2. But, then I get that you take 1/2 of it to arrive at 10. What is logically wrong with 4!?

I got a disappointing Q49 recently. Going for a Q50/51. Need to sort out basic stuff soon..
User avatar
shrgmat
Joined: 11 Nov 2020
Last visit: 25 Dec 2021
Posts: 36
Own Kudos:
Given Kudos: 82
Posts: 36
Kudos: 18
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Thanks Bunuel. Yes, that makes sense. I don't have other options then. Must use 5P2 / 2.
avatar
35wlBAB9081p
Joined: 01 Jan 2022
Last visit: 15 Feb 2022
Posts: 1
Given Kudos: 1
Posts: 1
Kudos: 0
Kudos
Add Kudos
Bookmarks
Bookmark this Post
walker

Example #2
Q: Given that there are 5 married couples. If we select only 3 people out of the 10, what is the probability that none of them are married to each other?
Solution:

1) combinatorial approach:
\(C^5_3\) - we choose 3 couples out of 5 couples.
\(C^2_1\) - we chose one person out of a couple.
\((C^2_1)^3\) - we have 3 couple and we choose one person out of each couple.
\(C^{10}_3\) - the total number of combinations to choose 3 people out of 10 people.

\(p=\frac{C^5_3*(C^2_1)^3}{C^{10}_3}=\frac{10*8}{10*3*4} = \frac{2}{3}\)

2) reversal combinatorial approach: In this example reversal approach is a bit shorter and faster.
\(C^5_1\) - we choose 1 couple out of 5 couples.
\(C^8_1\) - we chose one person out of remaining 8 people.
\(C^{10}_3\) - the total number of combinations to choose 3 people out of 10 people.

\(p=1 - \frac{C^5_1*C^8_1}{C^{10}_3}=1 - \frac{5*8}{10*3*4} = \frac{2}{3}\)

3) probability approach:
1st person: \(\frac{10}{10} = 1\) - we choose any person out of 10.
2nd person: \(\frac{8}{9}\) - we choose any person out of 8=10-2(one couple from previous choice)
3rd person: \(\frac{6}{8}\) - we choose any person out of 6=10-4(two couples from previous choices).

\(p = 1*\frac{8}{9}*\frac{6}{8}=\frac{2}{3}\)

Thank you for great lesson walker!! I try to calculate opposite probability to problem example you have. I get right answer with combinatorial approach (1/3). I dont get right answer with probability approach.

My problem: If choosing 3 out of 10, what is probability of getting one couple who is married?

Probability of choosing any person: 10/10 = 1
Probability of choosing the wife: 1/9
Probability of choosing any person: 8/8 = 1

Total probability = 1 * 1/9 * 1 = 1/9

This is wrong. What is mistake in thinking here?
   1   2   3   
Moderator:
Math Expert
111194 posts