Odds of Getting 2 Out of 3 Correct

  • Thread starter Thread starter swerdna
  • Start date Start date
AI Thread Summary
The discussion centers on calculating the odds of correctly guessing 2 out of 3 choices with 50/50 odds. Participants agree that the choices are independent, similar to coin flips or guessing card colors. A decision tree approach is suggested to visualize the possible outcomes, which total 8. The formula for determining the probability is provided: 3 C 2 (the combinations of successes) divided by 2^3 (the total outcomes), resulting in a probability of 3/8. This method can also be adapted for different odds, such as 60/40.
swerdna
Messages
251
Reaction score
0
With three 50/50 odds choices, what are the odds of getting any 2 correct?
 
Physics news on Phys.org
swerdna said:
With three 50/50 odds choices, what are the odds of getting any 2 correct?

What are your thoughts? It also depends on whether each choice is independent of the previous choices (like coin flips are). This is a bit too much like homework/coursework, so I'm moving it to Homework Help.
 
berkeman said:
What are your thoughts? It also depends on whether each choice is independent of the previous choices (like coin flips are). This is a bit too much like homework/coursework, so I'm moving it to Homework Help.
I'm far too old for it to be homework. Each choice is independant. If a person was guessing the colour of randomly presented unseen playing cards, what are the chaces of guessing any two of the thee correctly. I think it must be less than 1 in 4.
 
Last edited:
swerdna said:
I'm far too old for it to be homework. Each choice is independant. If a person was guessing the colour of randomly presented unseen playing cards, what are the chaces of guessing any two of the thee correctly. I think it must be less than 1 in 4.

Hey, I'm pretty old as well, and do lots of homework! :biggrin:

The key is to think of it as a decision tree. You can write it out like this, with a correct pick = 1, and a wrong pick = 0:

Code:
1st 2nd 3rd Total
 0    0    0     0
 0    0    1     1
 0    1    0     1
 0    1    1     2
 1    0    0     1
 1    0    1     2
 1    1    0     2
 1    1    1     3

There are 8 possible outcomes. How many of them result in getting 2 right?

Can you see how you would extend this to, say, a 60/40 chance of picking correctly?
 
Last edited:
berkeman said:
Hey, I'm pretty old as well, and do lots of homework! :biggrin:

The key is to think of it as a decision tree. You can write it out like this, with a correct pick = 1, and a wrong pick = 0:

Code:
1st 2nd 3rd Total
 0    0    0     0
 0    0    1     1
 0    1    0     1
 0    1    1     2
 1    0    0     1
 1    0    1     2
 1    1    0     2
 1    1    1     3

There are 8 possible outcomes. How many of them result in getting 2 right?

Can you see how you would extend this to, say, a 60/40 chance of picking correctly?
I have it - Thanks
 
If you've learned the chose formula, then a good way to do problems that have specifically 50/50 odds is this:
\frac{n C r}{2^n} where n is the number of trials, and r is the number of successes. So, to answer your question, 3 C 2=3, and 23=8. So your answer should be \frac{3}{8}
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Essentially I just have this problem that I'm stuck on, on a sheet about complex numbers: Show that, for ##|r|<1,## $$1+r\cos(x)+r^2\cos(2x)+r^3\cos(3x)...=\frac{1-r\cos(x)}{1-2r\cos(x)+r^2}$$ My first thought was to express it as a geometric series, where the real part of the sum of the series would be the series you see above: $$1+re^{ix}+r^2e^{2ix}+r^3e^{3ix}...$$ The sum of this series is just: $$\frac{(re^{ix})^n-1}{re^{ix} - 1}$$ I'm having some trouble trying to figure out what to...
Back
Top