A commitee of 3 people is to be chosen from 4 married couples.What is the number of different commitees that can be chosen if 2 people who are married to each other cannot both serve on the commitee?
A 16
B 24
C26
D 30
E 32
abemartin87 Wrote:=====1st Method============
Lets say that I first want to find the total number of combinations of picking the three members then subtract out the number of ways a married couple can appear in the three committtie.
So the total number of ways of selecting the three members is 8C3=56.
Now the total number of ways we can have a married couple is
8 _ 1 _ 6
The first slot is for any of the 8 people. The second person has to be the first persons couple, so it equals 1. The last slot is any of the remaining 6.Lastly, since order doesnt matter we divide by 3!. to Get 8.
=====Second Method=========
The second method i used to takle the number of ways we can have a married couple in the 3 slots is we first choose one couple out of the 4 --- 4C1. We have 3 slots to place the 2 married couples -- 3C2. And for the last slot we can choose any of the remaining 6 -- 6C1.
chriswearnjunk Wrote:What I don't get is why you divide by 3! instead of 3!5!. That would be same denominator as in the combinations formula, and makes sense in my head because you are essentially assigning 3 "you're in" designations and 5 "you're out" designations to 8 people, each of which are identical.
RonPurewal Wrote:first, note that this problem can't be solved with the traditional combination and permutation formulas.
however, this problem can be solved by the "slot method", in which you create a slot for each decision that you have to make in the problem. we are choosing a committee of three people, so we make three slots:
___ ___ ___
for the first slot, anyone can be chosen.
_8_ ___ ___
once this person has been chosen, there are now TWO people ineligible for the next slot: the person who has actually been chosen already, AND that person's spouse (note that no married couple is allowed to serve together on the committee). so there are only six people eligible for the second slot.
_8_ _6_ ___
for the same reason as above, once these two people have been chosen, there are now only four people eligible for the last slot.
_8_ _6_ _4_
finally, since order doesn't matter in this problem (i.e., it's okay to scramble the people on the committee once you have chosen them), we have to divide by the factorial of the number of choices:
(8 x 6 x 4) / 3!
= 8 x 4 (since 3! equals 6)
= 32
qqixiaofan Wrote:Hi,
Here is how i see the problem in my head. And please do let me know if the logic is incorrect.
(1) within each couple, we need to chose one ppl for the commitee, so the combination is 1 out of 2: 2C1 = 2
(2) There are three couples, each has 2 ways to chose one member, so 3 couple =2*2*2=8
(3) There are 4 couples, we need to chose 3 out of 4. The combination of 4C3 = 4
(4) finally: 8*4=32
RonPurewal Wrote:qqixiaofan Wrote:Hi,
Here is how i see the problem in my head. And please do let me know if the logic is incorrect.
(1) within each couple, we need to chose one ppl for the commitee, so the combination is 1 out of 2: 2C1 = 2
(2) There are three couples, each has 2 ways to chose one member, so 3 couple =2*2*2=8
(3) There are 4 couples, we need to chose 3 out of 4. The combination of 4C3 = 4
(4) finally: 8*4=32
Technically, though, the steps don't work in this order. For this approach to make sense, the steps should be done in the order 3, 1, 2, 4.
I.e., you can't actually pick the people from the couples (steps 1 and 2) until you've already chosen the couples from which to choose them (step 3).
But, yes, this is a workable approach.