document.write( "Question 1150310: percentage of orders filled correctly at burger king was 90.3% using binominal distribution what is the probability that 3 orders will be filled correctly out of 5 orders?
\n" );
document.write( "what are the mean and standard deviation of the binominal distribution for the number of orders filed correctly out of 10 orders?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #771722 by jim_thompson5910(35256)![]() ![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "Question 1: what is the probability that 3 orders will be filled correctly out of 5 orders?\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "n = 5 is the sample size \n" ); document.write( "k = 3 is the number of successes (ie proper orders) we want of that sample size \n" ); document.write( "p = 0.903 is the probability of getting any single order correct\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Compute the binomial coefficient using the nCr combination formula \n" ); document.write( "n C r = (n!)/(r!*(n-r)!) \n" ); document.write( "n C k = (n!)/(k!*(n-k)!) \n" ); document.write( "5 C 3 = (5!)/(3!*(5-3)!) \n" ); document.write( "5 C 3 = (5!)/(3!*2!) \n" ); document.write( "5 C 3 = (5*4*3!)/(3!*2!) \n" ); document.write( "5 C 3 = (5*4)/(2!) \n" ); document.write( "5 C 3 = (5*4)/(2*1) \n" ); document.write( "5 C 3 = 20/2 \n" ); document.write( "5 C 3 = 10 \n" ); document.write( "This value 10 can be found in Pascal's Triangle. Start with the row that has \"1,5,...\" at the beginning. Then count out k+1 = 3+1 = 4 spots over until you land on that second copy of \"10\". You count out k+1 spots instead of k spots because we start at k = 0 and not k = 1.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Now compute the binomial probability of getting exactly k = 3 orders correct \n" ); document.write( "P(X = k) = (n C k)*(p)^(k)*(1-p)^(n-k) \n" ); document.write( "P(X = 3) = (5 C 3)*(0.903)^3*(1-0.903)^(5-3) \n" ); document.write( "P(X = 3) = (5 C 3)*(0.903)^3*(0.097)^2 \n" ); document.write( "P(X = 3) = (10)*(0.903)^3*(0.097)^2 \n" ); document.write( "P(X = 3) = (10)*(0.736314327)*(0.009409) \n" ); document.write( "P(X = 3) = 0.06927981502743 \n" ); document.write( "P(X = 3) = 0.0693 \n" ); document.write( "P(X = 3) = 6.93%\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The probability of getting three correct orders out of a sample of five is approximately 0.0693 which converts to 6.93%\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "===============================================================\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Question 2: what are the mean and standard deviation of the binomial distribution for the number of orders filed correctly out of 10 orders?\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "mu = mean \n" ); document.write( "sigma = standard deviation \n" ); document.write( "n = sample size = 10 \n" ); document.write( "p = probability of getting any single order correct = 0.903\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "mu = n*p \n" ); document.write( "mu = 10*0.903 \n" ); document.write( "mu = 9.03\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "sigma = sqrt(n*p*(1-p)) \n" ); document.write( "sigma = sqrt(10*0.903*(1-0.903)) \n" ); document.write( "sigma = 0.93590063575147 \n" ); document.write( "sigma = 0.9359\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "For a sample of n = 10 orders, the binomial distribution for the number of correct orders will have a mean of 9.03 and a standard deviation of approximately 0.9359 \n" ); document.write( " \n" ); document.write( " |