Chance of Selecting Twins from Group of 30 [Solved!]

In summary: The probability of not getting the twins is n!/(n-r)! = 30!/3!27! = 30*27*26/6 = 10*27*26. The probability of getting any other individual is n!/(n-r)! = 30!/3!27! = 30*27*25/6 = 10*27*25.This was really close - all you had to do was take account ofthe order shouldn't matter.by multiplying by the number of orderings of three choices.I would
  • #1
tomwilliam
144
2
Thread moved from the technical math forums to the schoolwork forums
TL;DR Summary: Chance of picking 2 named people when randomly choosing 3 from a group of 30.

For my daughter's homework question:

There is a group of 12 girls and 18 boys. Two of them are twins (girl and boy). If I select three at random, what is the chance that the twins will be chosen?

I thought that it would be
P = 1/30 x 1/29 x 28/28
Because the first two choices have to be those specific named individuals, but then the third choice can be anyone. Now I'm not sure, because the order shouldn't matter.
Is this solution correct?
Thanks!
 
Physics news on Phys.org
  • #2
On your first pick, what are the chances that you will pick one of the twins?
 
  • Like
Likes scottdave and tomwilliam
  • #3
Ah!
Is it
P=2/30 x 1/29 x 28/28?
 
  • #4
As a sanity check, notice that the way you calculated it, having a third choice didn't change the probability at all. It just added a multiplier of 28/28=1. Does that seem logical? It seems like having a third choice should have made it more likely to get the twins.
 
  • Like
Likes scottdave, hutchphd, haushofer and 2 others
  • #5
Yes, that's what makes me think I've got it wrong.
I think what I have is the same as the probability of selecting the two twins when choosing two out of the thirty. I have an extra available slot, but how do I factor that into the probability?
 
  • #6
tomwilliam said:
Yes, that's what makes me think I've got it wrong.
I think what I have is the same as the probability of selecting the two twins when choosing two out of the thirty. I have an extra available slot, but how do I factor that into the probability?
Well, one of your three picks has to be the first twin another one of the three has to be the second twin and then the third pic can't be either twin. The problem is that the order is indeterminate. Maybe make a table showing the possibilities.
 
  • #7
Thanks to all for your help.
So now I'm looking at all of the possible permutations of
Twin 1...Twin 2....Any of the other 28.
I figure that it could be 6 different permutations x 28 for each of the others. That would give me 162 permutations which are favourable, divided by 4060 possible outcomes.
P = 0.04

My daughter has decided that

P = (2C2 x 28C1)/30C3 = 0.007

But I don't see how the first C takes into account the size of the group. Also, if 2C2 = 1, then aren't we saying that the solution to this problem is the same as the simple probability of one of the three picks not being the twins?
 
  • #8
There are CORRECTION ##30 \times 29 \times 28 = 24,360## (NOT ##^{30}C_3##) total ways of arranging three of 30 people where they are all considered different.
Of those, how many ways are there to have 2 twins, ##T_1, T_2## and one other, ##O_{1-28}## , in the first 3 positions?
You can "brute-force" the counting:
##T_1 T_2 O_{1-28}## is 28 ways.
##T_1 O_{1-28} T_2## is another 28 ways.
....
Continue to count and sum.
They are all equally likely, so you can divide your total count by CORRECTION: ##24,360## to get the probability. You can compare this answer to any formulas that you think should have given the answer more quickly.
 
Last edited:
  • #9
Thank you!
So I’m brute force calculating it and I see 6 possible ways, each of which have 28 different arrangements. This would be 168 in the numerator, out of 4060 possible outcomes = 0.04.
I’m not sure what formula to use to avoid the brute force counting: would it be Permutations? I thought about n!/(n-r)! but that doesn’t work for n=30 and r=3.
 
  • #10
tomwilliam said:
Thank you!
So I’m brute force calculating it and I see 6 possible ways, each of which have 28 different arrangements. This would be 168 in the numerator, out of 4060 possible outcomes = 0.04.
I’m not sure what formula to use to avoid the brute force counting: would it be Permutations? I thought about n!/(n-r)! but that doesn’t work for n=30 and r=3.
I made a terrible mistake. There are 30*29*28 = 24,360 possible ways of picking 3 from 30 where order counts and all 30 are considered different.
I agree with your count of 6*28 = 168.
That would be 168/24360 = 0.0069
That agrees with your daughter's answer.
 
Last edited:
  • Like
Likes tomwilliam
  • #11
tomwilliam said:
I thought that it would be
P = 1/30 x 1/29 x 28/28
Because the first two choices have to be those specific named individuals, but then the third choice can be anyone.
This was really close - all you had to do was take account of
tomwilliam said:
the order shouldn't matter.
by multiplying by the number of orderings of three choices.
 
  • Like
Likes tomwilliam and FactChecker
  • #12
I would do it like this. The probability space is the combinations of three out of thirty. The size or cardinality of the space is "thirty chose three" which is n!/r!(n-r!) = 30!/3!27! = 30*29*28/6 = 5*29*28. All combinations are equally probable.

Of these combinations there are 28 that contain the twins. The probability of getting one of these is 28 divided by the number of combinations, the size of the probability space. 28/(5*29*28) = 1/(5*29) = 1/145.
 
Last edited:
  • Like
Likes tomwilliam and FactChecker
  • #13
tomwilliam said:
TL;DR Summary: Chance of picking 2 named people when randomly choosing 3 from a group of 30.

For my daughter's homework question:

There is a group of 12 girls and 18 boys. Two of them are twins (girl and boy). If I select three at random, what is the chance that the twins will be chosen?

I thought that it would be
P = 1/30 x 1/29 x 28/28
Because the first two choices have to be those specific named individuals, but then the third choice can be anyone. Now I'm not sure, because the order shouldn't matter.
Is this solution correct?
Thanks!
First, let's analyse the problem to see what we are talking about. Let's have G for the girl twin; B for the boy twin and X for anyone else. It's a success if we get both of the twins. The cases are:

GBX
GXB
BGX
BXG
XGB
XBG

Now you have calculate the probability of each of these.

PS Once you understand what you are doing, you may start to see why binomial combinations are relevant.
 
Last edited:
  • Like
Likes tomwilliam
  • #14
Thanks to everyone for helping!
 
  • #15
tomwilliam said:
Thanks to everyone for helping!
Here's a idea/suggestion. Usually a question like this asks you to calculate only one thing. In this case, the probability of picking both twins. This might lead to only a partial understanding of these problems. When I'm learning I like to be more thorough in terms of (within reason) looking at the whole problem. And thereby seeing the whole picture. And, why not? If the aim is to learn probability theory, why just do problems in little bits and pieces?

In this case, I would have tried to see the whole picture. Here are my thought processes.

There are four outcomes:

1) You have both twins.

2) You have only the girl twin (and two others).

3) You have only the boy twin (and two others).

4) You have neither twin.

Observation: these are mutually exclusive; and represent all the possible outcomes. So, these four probabilities must add up to ##1##.

Observation: they are not all equally likely;

Intuitive insight: 2) and 3) must have an equal probability. In more complicated problems, I would think carefully about relying on these insights. So, I might calculate 2) and 3) in any case and check they are the same. But, in this case, it seems clear to me that 2) and 3) must be equal.

My next thought is what is the easiest to calculate? It looks like 4). That must be:
$$p_4 = \frac {28} {30} \times \frac {27} {29} \times \frac {26} {28} = 0.807$$And that seems like a sensible number.

Now, what about ##p_2##?

Intuitive insight: the probability of getting the girl on the first choice is the same as same as getting the girl on the second choice, and the same on the third choice. This insight might not be so easy to see. Let's calculate and see:
$$p(GXX) = \frac {1} {30} \times \frac {28} {29} \times \frac {27} {28} = 0.031$$$$p(XGX) = \frac {28} {30} \times \frac {1} {29} \times \frac {27} {28} = 0.031$$$$p(XXG) = \frac {28} {30} \times \frac {27} {29} \times \frac {1} {28} = 0.031$$And we see that it's the same probability in all three sub-cases. So:
$$p_2 = p(GXX) + p(XGX) + P(XXG) = 3 \times 0.031 = 0.093$$Now, it should be clear that we have the same calculation for ##p_3##. If we do the calculution, we are simply replacing the G with a B. So:$$p_3 = 0.093$$
This now gives us a method of calculating ##p_1##, using the fact that these are mutually exclusive and represent all the possible outcomes, hence must sum to ##1##:
$$p_1 = 1 - p_2 - p_3 - p_4 = 0.007$$
Finally, it's almost always a good idea to calculate the answer two different ways and check they are the same. So, we should calculate ##p_1## directly.

Intuitive insight: all six sub-cases of getting both twins have the same probability. That is to say:
$$p(GBX) = p(GXB) = p(XGB) = p(BGX) = p(BXG) = p(XBG)$$You can check this for yourself. In any case:
$$p(GBX) = \frac{1}{30} \times \frac {1}{29} \times \frac{28}{28} = 0.00115$$$$p_1 = 6 \times p(GBX) = 0.007$$That's how I would approach the problem if I were revising probability theory. And, I can now answer any question relating to picking one or both of the twins.
 
  • Like
  • Informative
Likes tomwilliam and DrClaude
  • #16
pbuk said:
This was really close - all you had to do was take account of
Interesting. The third choice should not have increased the probability at this point, and even more choices could be added with no effect at this point.
pbuk said:
by multiplying by the number of orderings of three choices.
But then the additional choices would increase the multiplier for the number of orderings of the choices.
 
  • Like
Likes tomwilliam
  • #17
FactChecker said:
Interesting. The third choice should not have increased the probability at this point, and even more choices could be added with no effect at this point.
No. For example, if there were 1,000,000 people in addition to the twins, the probability of drawing both of them would be insignificant. If there was only one person in addition to them, the probability of drawing both of them would be 1.0
 
  • #18
tomwilliam said:
There is a group of 12 girls and 18 boys. Two of them are twins (girl and boy).
The girl/boy differentiation is a "red herring." I.E., information extraneous to the question. This, I think, is another valuable insight.
 
  • #19
phinds said:
No. For example, if there were 1,000,000 people in addition to the twins, the probability of drawing both of them would be insignificant. If there was only one person in addition to them, the probability of drawing both of them would be 1.0
Sorry that I was not clear. The quote of pbuk's post #11 did not show the relevant step of the calculation. This step assumed the twins were the first two draws. There is no increase due to an increased number of draws "at this point" of the calculation. Then the probabilities would be increased greatly when this probability was multiplied by the number of ways to reorder the draws.
 
  • Like
Likes phinds
  • #20
FactChecker said:
Sorry that I was not clear.
Actually, I think you were being clear. I was just being inattentive.
 
  • #21
My take, calculating the probability of _ not_ selecting the twins:
You can select 3 children from the 28 non-twins. This out of a total of 3 children chosen from the totality of 30 children.
 
  • #22
WWGD said:
My take, calculating the probability of _ not_ selecting the twins:
You can select 3 children from the 28 non-twins. This out of a total of 3 children chosen from the totality of 30 children.
As long as you don't consider the case where only one of the twins is chosen.
 
  • Like
Likes FactChecker
  • #23
PeroK said:
As long as you don't consider the case where only one of the twins is chosen.
No, I'm considering all or nothing. Neither son , or both.
 
  • #24
WWGD said:
No, I'm considering all or nothing. Neither son , or both.
The law of the excluded middle!
 
  • #25
Indeed. Inclusion-Exclusion becomes a hassle pretty quickly.
 

What is the chance of selecting twins from a group of 30?

The chance of selecting twins from a group of 30 is approximately 3.3%. This means that out of 30 people, there is a 3.3% chance that two of them will be twins.

How is the chance of selecting twins calculated?

The chance of selecting twins is calculated by multiplying the probability of having twins (which is around 3%) by the number of pairs in the group. In this case, the number of pairs would be 30/2 = 15.

Is the chance of selecting twins the same for all groups?

No, the chance of selecting twins can vary depending on the group. Factors such as age, ethnicity, and family history can all affect the likelihood of having twins.

Can the chance of selecting twins be higher or lower than 3.3%?

Yes, the chance of selecting twins can be higher or lower than 3.3%. As mentioned before, various factors can influence the likelihood of having twins. For example, the chance of having twins is higher for women over the age of 35 and for certain ethnicities.

What are some other interesting facts about the chance of selecting twins?

Some other interesting facts about the chance of selecting twins include: fraternal twins (twins from two separate eggs) are more common than identical twins (twins from one egg), the chance of having twins increases with each pregnancy, and the chance of having twins is higher for taller women.

Similar threads

  • Precalculus Mathematics Homework Help
Replies
7
Views
1K
  • Precalculus Mathematics Homework Help
Replies
9
Views
3K
  • Precalculus Mathematics Homework Help
Replies
3
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
4
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
2
Views
4K
Replies
1
Views
2K
  • General Math
Replies
30
Views
3K
Replies
2
Views
2K
Replies
5
Views
11K
  • Calculus and Beyond Homework Help
Replies
6
Views
2K
Back
Top