document.write( "Question 930943: it is known that 80% of all college professors have doctoral degree. if 10 professors are randomly selected find the probability that
\n" );
document.write( "a: fewer than 4 have doctoral degree
\n" );
document.write( "b: at least 6 have doctoral degree
\n" );
document.write( "c: between 5 and 7 (inclusive) have doctoral degree
\n" );
document.write( "
\n" );
document.write( " please help me to understand it step by step .Thank u :) \n" );
document.write( "
Algebra.Com's Answer #565352 by ewatrrr(24785)![]() ![]() You can put this solution on YOUR website! n(doc degree) = .80 , n = 10 \n" ); document.write( ".... \n" ); document.write( "Using a TI calculator 0r similarly a Casio fx-115 ES plus \n" ); document.write( "P(x < 4)= binomcdf(10, .80, 3) = .00086 \n" ); document.write( "...... \n" ); document.write( "P(x ≥ 6) = 1 - binomcdf(10, .80, 5)= 1-.0328 = .9672 \n" ); document.write( ".......... \n" ); document.write( "P(5≤ x ≤ 7) = binomcdf(10, .80, 7) - [ 1- binomcdf(10, .80, 4)] \n" ); document.write( "P(5≤ x ≤ 7) = .3222 - .0064 = .3158 \n" ); document.write( "0r \n" ); document.write( "P(5≤ x ≤ 7) = P(x=5) + P(x=6) + P(x=7) = .0264 + .0881 + .2013 = .3158 \n" ); document.write( "Using binompdf() Or for ex P(x=5) = 10C5(.8)^5(.2)^5 \n" ); document.write( " \n" ); document.write( " |