document.write( "Question 488990: If I drop three coins on a table, what is the probability of finding
\n" );
document.write( " 1. exactly 2 heads
\n" );
document.write( " 2. at most 1 head
\n" );
document.write( " 3. at least 2 heads
\n" );
document.write( " 4. at least 1 head
\n" );
document.write( "sample space = 8\r
\n" );
document.write( "\n" );
document.write( "I came up with HHT, HTH, THH,HTT,THT,TTH,TTT,HHH.
\n" );
document.write( "state the probability of each in the form of fraction and percent.
\n" );
document.write( "For 1,2,3 I came up with 1/4 or .25, and for 4 = 1/6.
\n" );
document.write( "Have I done this correctly, or can you show me a better way to show this??
\n" );
document.write( "Is this a form of \"classical probability\"??
\n" );
document.write( "Thank you. \n" );
document.write( "
Algebra.Com's Answer #333504 by Theo(13342)![]() ![]() You can put this solution on YOUR website! p(heads) = .5 \n" ); document.write( "p(tails) = .5 \n" ); document.write( "since the probability of success and failure are the same, then the probability for each occurrence is the same. \n" ); document.write( "that probability is .5*.5*.5 = .125 \n" ); document.write( "what differs is the ways in which each occurrence can happen. \n" ); document.write( "3 heads can only happen in 1 way. \n" ); document.write( "3 tails can only happen in 1 way. \n" ); document.write( "1 head and 2 tails can happen in 3 ways. \n" ); document.write( "they are: \n" ); document.write( "htt \n" ); document.write( "tht \n" ); document.write( "tth \n" ); document.write( "2 heads and 1 tail can happen in 3 ways. \n" ); document.write( "they are: \n" ); document.write( "hht \n" ); document.write( "hth \n" ); document.write( "thh \n" ); document.write( "the formula for determining the ways they can happen is the combination formula. \n" ); document.write( "that formula is \n" ); document.write( "nCx = n! / (x! * (n-x)!)) \n" ); document.write( "you are drawing 3 coins and you want exactly 1 head. \n" ); document.write( "the formula for that becomes: \n" ); document.write( "n = 3 \n" ); document.write( "x = 1 \n" ); document.write( "nCx = 3! / (1! * 2!) = 3! / 2! = (3 * 2!) / 2! = 3 \n" ); document.write( "3! means 3 * 2 * 1 \n" ); document.write( "2! means 2 * 1 \n" ); document.write( "1! means 1 \n" ); document.write( "the total probability of all possible occurrences has to equal to 1. \n" ); document.write( "for your 3 coins, here's how the probabilities would be calculated. \n" ); document.write( "probability of 0 heads would be: \n" ); document.write( "3C0 * (.5)^3 = 3! / (0! * 3!) * .125 = 3! / 3! * .125 = 1 * .125 = .125 \n" ); document.write( "0! is always equal to 1 \n" ); document.write( "1! is always equal to 1 \n" ); document.write( "probability of 1 head would be: \n" ); document.write( "3C1 * (.5)^3 = 3! / (1! * 2!) * .125 = 3! / 2! * .125 = 3 * .125 = .375 \n" ); document.write( "probability of 2 heads would be: \n" ); document.write( "3C2 * (.5)^2 = 3! / (2! * 1!) * .125 = 3! / 2! * .125 = 3 * .125 = .375 \n" ); document.write( "probability of 3 heads would be: \n" ); document.write( "3C3 * (.5)^2 = 3! / (3! * 0!) * .125 = 3! / 3! * .125 = 1 * .125 = .125 \n" ); document.write( "your total probability is: \n" ); document.write( ".125 + .125 + .375 + .375 = .250 + .750 = 1.0 \n" ); document.write( "this is what it should be so we calculated correctly.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the general formula is: \n" ); document.write( "nCx * p^x * q^(n-x) \n" ); document.write( "p is the probability of success \n" ); document.write( "q is the probability of failure.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "in your experiment, the probability of success and the probability of failure were the same so it didn't matter.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "in other case, they will be different.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "suppose the coin was weighted so the probability of heads was .7 and the probability of tails was .3\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the same problem would give you the following probabilities. \n" ); document.write( "probability of exactly 0 heads = 1 * .7^0 * .3^3 = .027 \n" ); document.write( "probability of exactly 1 head = 3 * .7^1 * .3^2 = .189 \n" ); document.write( "probability of exactly 2 heads = 3 * .7^2 * .3^1 = .441 \n" ); document.write( "probability of exactly 3 heads = 1 * .7^3 = .343\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the total probability is still equal to 1. \n" ); document.write( "the number of ways each occurrence can happen is the same. \n" ); document.write( "the probability of each occurrence, however, is different.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the answer to your questions from the data for equal probabilities is:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "If I drop three coins on a table, what is the probability of finding \n" ); document.write( "1. exactly 2 heads \n" ); document.write( "exactly 2 heads would be .375 \n" ); document.write( "2. at most 1 head \n" ); document.write( "at most 1 head would be exactly 0 and exactly 1 which would be .125 + .375 = .5 \n" ); document.write( "3. at least 2 heads \n" ); document.write( "at least 2 heads would be exactly 2 and exactly 3 which would be .375 and .125 = .5 \n" ); document.write( "4. at least 1 head \n" ); document.write( "at least 1 head would be exactly 1 and exactly 2 and exactly 3 which would be .375 + .375 + .125 = .875 \n" ); document.write( "not that this is also 1 minus exactly 0 which would be equal to 1 - .125 = .875.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( ".125 = 1/8 \n" ); document.write( ".375 = 3/8\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "i think you tallied the possibilities correctly but may not have tallied the probabilities correctly.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "doing it the way you did it, i got: \n" ); document.write( "HHH \n" ); document.write( "HHT \n" ); document.write( "HTH \n" ); document.write( "THH \n" ); document.write( "HTT \n" ); document.write( "THT \n" ); document.write( "TTH \n" ); document.write( "TTT \n" ); document.write( "this part seems to be ok. \n" ); document.write( "looking at this set of data, however, i get the following. \n" ); document.write( "probability of exactly 0 heads is 1/8 (TTT) \n" ); document.write( "probability of exactly 1 head is 3/8 (HTT, THT, TTH) \n" ); document.write( "probability of exactly 2 heads is 3/8 (HHT, HTH, THH) \n" ); document.write( "probability of exactly 3 heads is 1/8 (HHH)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the answers to the questions are: \n" ); document.write( "1. exactly 2 heads = 3/8 \n" ); document.write( "2. at most 1 head = 4/8 \n" ); document.write( "3. at least 2 heads = 4/8 \n" ); document.write( "4. at least 1 head = 7/8\r \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |