document.write( "Question 1049652: dangerous computer virus attacks a folder consisting of 250 files. Files are affected by the
\n" );
document.write( "virus independently of one another. Each file is affected with the probability 0.032. What
\n" );
document.write( "is the probability that more than 7 files are affected by this virus? \n" );
document.write( "
Algebra.Com's Answer #665232 by ewatrrr(24785)![]() ![]() You can put this solution on YOUR website! p = .032, n = 250 \n" ); document.write( "TI syntax is binomcdf(n, p, largest x-value) for binomial ≤ cumulative probability \n" ); document.write( "P(x > 7) = 1 - binomcdf(250, .032, 7) \n" ); document.write( " |