document.write( "Question 933816: The probability that a student will pass chemistry class is 0.85. Three students are randomly selected. Find the probability that:
\n" ); document.write( "a) all 3 will pass the class
\n" ); document.write( "b) none of 3 will pass the class
\n" ); document.write( "c) at least 1 student will pass
\n" ); document.write( "

Algebra.Com's Answer #567132 by ewatrrr(24785)\"\" \"About 
You can put this solution on YOUR website!
p(pass) = .85, n = 3
\n" ); document.write( "......
\n" ); document.write( "P(x = 3) = binompdf(3, .85, 3) 0r (.85)^3
\n" ); document.write( "P(x = 0) = binompdf(3, .85, 0) 0r (.15)^3 (Note: 1-.85 = .15)
\n" ); document.write( "P(x ≥ 1) = 1 - P(0) = 1 - (.15)^3
\n" ); document.write( "
\n" );