document.write( "Question 521267: Depakote is a medication whose purpose is to reduce the pain associated with migraine headaches. In clinical trials of Depakote, 2% of the patients in the study experienced weight gain as a side effect. Suppose a random sample of 30 Depakote users is obtained. Find the following probabilities:
\n" );
document.write( "a. Exactly 3 experienced weight gain as a side effect
\n" );
document.write( "b. 3 or fewer experienced weight gain as a side effect
\n" );
document.write( "c. 4 or more experienced weight gain as a side effect.
\n" );
document.write( "d. Between 1 and 4 patients, exclusive, experienced weight gain as a side effect. \n" );
document.write( "
Algebra.Com's Answer #346402 by stanbon(75887) ![]() You can put this solution on YOUR website! Depakote is a medication whose purpose is to reduce the pain associated with migraine headaches. \n" ); document.write( "In clinical trials of Depakote, 2% of the patients in the study experienced weight gain as a side effect. \n" ); document.write( "Suppose a random sample of 30 Depakote users is obtained. \n" ); document.write( "---- \n" ); document.write( "Binomial Problem with n = 30 and p(side effect) = 0.02 \n" ); document.write( "-------------------- \n" ); document.write( "Find the following probabilities: \n" ); document.write( "a. Exactly 3 experienced weight gain as a side effect \n" ); document.write( "P(x = 3) = 30C3*0.02^3*0.98^27 = 0.0188 \n" ); document.write( "------------------------------------------- \n" ); document.write( "b. 3 or fewer experienced weight gain as a side effect \n" ); document.write( "P(0<= x <=3) = binomcdf(30,0.02,3) = 0.9971 \n" ); document.write( "---------------------------------------------- \n" ); document.write( "c. 4 or more experienced weight gain as a side effect. \n" ); document.write( "P(4<= x <=30) = 1 - P(0<= x <=3) = 0.0029 \n" ); document.write( "----------------------------------- \n" ); document.write( "d. Between 1 and 4 patients, exclusive, experienced weight gain as a side effect. \n" ); document.write( "P(1<= x <=4) = binomcdf(30,0.02,4) - binomcdf(30,0.02,0) = 0.4542 \n" ); document.write( "================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "================== \n" ); document.write( " \n" ); document.write( " |