document.write( "Question 1194500: 1. It is known that 20% of all persons given a certain \"medication\" get very drowsy within 2.5 minutes. Find the probabilities that among 15
\n" ); document.write( "persons given the medications:
\n" ); document.write( "a. at most two will get very drowsy within 2 minutes.
\n" ); document.write( "b. at least five will get very drowsy within 2 minutes.
\n" ); document.write( "
\n" ); document.write( "

Algebra.Com's Answer #826712 by Boreal(15235)\"\" \"About 
You can put this solution on YOUR website!
at most 2 includes 0, 1, and 2
\n" ); document.write( "p(0)=15C0*0.8^15=0.0352
\n" ); document.write( "p(1)=15C1*0.2^1*0.8^14=0.1319
\n" ); document.write( "p(2)=15C2*0.2^2*0.8^13=0.2309
\n" ); document.write( "that total is 0.3980
\n" ); document.write( "Also binomcdf(15,0.2,2)
\n" ); document.write( "-at least 5 can do with 1-bionomcdf(15,0.2,4)=0.1642
\n" ); document.write( "OR do p(3)=15C3*0.2^3*0.8^12 and p(4)=15C4*0.2^4*0.8^11, sum those to the three above and subtract from 1.
\n" ); document.write( "
\n" ); document.write( "
\n" );