document.write( "Question 914089: If a particular medical procedure has a 95% success rate for each time it is performed. Find the following:
\n" );
document.write( "a) find the probability that for 3 patients, the procedure was performed successfully for all three of them.
\n" );
document.write( "b) find the probability that for 4 patients, the procedure did not succeed one or more times.
\n" );
document.write( "c) find the probability that a given procedure will succeed, given that neither of the previous two times it was performed it was successful.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #554862 by ewatrrr(24785) You can put this solution on YOUR website! p(success) = .95 \n" ); document.write( "n = 3 \n" ); document.write( "P(x = 3) = binompdf(3, .95 3) = .8574 0r 85.74% \n" ); document.write( "n = 4 \n" ); document.write( "P (x = 0) = binompdf(4, .95,0) = .00000625 0r P = .05^4 \n" ); document.write( "P(3rd time yes |not successful 1st and 2nd trials) = \n" ); document.write( "Or (1/3)binompdf(3, .95,1) \n" ); document.write( " \n" ); document.write( " |