document.write( "Question 185999: This is a college stats problem-
\n" );
document.write( "In testing a new drug, researchers found that 5% of all patients using it will have a mild side effect. A random sample of 11 patients using the drug is selected. Find the probability that:
\n" );
document.write( "a) exactly 2 will have this mild side effect
\n" );
document.write( "I can't figure this part out- 11/9*2???
\n" );
document.write( "b) at least 1 will have this mild side effect
\n" );
document.write( " 1 - (0.95^11) = 0.4312\r
\n" );
document.write( "\n" );
document.write( "Thanks \n" );
document.write( "
Algebra.Com's Answer #139480 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! In testing a new drug, researchers found that 5% of all patients using it will have a mild side effect. A random sample of 11 patients using the drug is selected. Find the probability that: \n" ); document.write( "a) exactly 2 will have this mild side effect \n" ); document.write( "Ans: binompdf(11,0.05,2) = 0.0867 \n" ); document.write( "Another way to get that answer P(x=2) = 11C2(0.5)^2*(0.95)^9 = 55*0.0025*0.6302 \n" ); document.write( "= 0.0867 \n" ); document.write( "---------------------------------------\r \n" ); document.write( "\n" ); document.write( "b) at least 1 will have this mild side effect \n" ); document.write( "Ans: 1 - binompdf(11,0.05,0) = 0.4312 \n" ); document.write( "------------- \n" ); document.write( "Another way: P(1<=x<=11) = 1-P(x=0) = 1- 11C0(0.05)^0(0.95)^11 \n" ); document.write( "= 1 - 1*1*0.95^11 = 1-5688= 0.4312 \n" ); document.write( "======================================== \n" ); document.write( "You must let me know if you do not understand these answers. \n" ); document.write( "It is essential that you understand how to calculate binomial \n" ); document.write( "probabilities. \n" ); document.write( "======================================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " |