document.write( "Question 206540: Backyard Retreats, Inc, sells an exclusive line of pools, hot tubs, and spas. It is located just off the Bee Line Expressway in Orlando, Florida. The owner reports 20% of the customers entering the store will make a purchase of at least $50. Suppose 15 customers enter the store before 10am on a particular Saturday
\n" );
document.write( "a) How many of these customers would you expect to make a purchase of at least $50?
\n" );
document.write( "b) What is the probability exactly five of these customers make a purchase of at least $50?
\n" );
document.write( "c) What is the probability at least five of these customers make a purchase of at least $50?
\n" );
document.write( "d) What is the probability at least one customers make a purchase of at least $50?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #156080 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! The owner reports 20% of the customers entering the store will make a purchase of at least $50. Suppose 15 customers enter the store before 10am on a particular Saturday \n" ); document.write( "---------------------- \n" ); document.write( "The problem is binomial with p = 0.2, and n= 15 \n" ); document.write( "a) How many of these customers would you expect to make a purchase of at least $50? \n" ); document.write( "mean = np = 15*0.2 = 3 \n" ); document.write( "------------------------------------ \n" ); document.write( "b) What is the probability exactly five of these customers make a purchase of at least $50? \n" ); document.write( "P(x+5) = 15C5(0.2)^5(0.8)10 = 0.1032 \n" ); document.write( "---------------------------------------------- \n" ); document.write( "c) What is the probability at least five of these customers make a purchase of at least $50? \n" ); document.write( "P(5<=x<=15) = 1-binomcdf(15,0.2,4) = 0.1642 \n" ); document.write( "----------------------------------------------- \n" ); document.write( "d) What is the probability at least one customers make a purchase of at least $50? \n" ); document.write( "P(at least one) = 1 - P(none) \n" ); document.write( "= 1 - binompdf(15,0.2,0) = 0.9648 \n" ); document.write( "======================================= \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |