document.write( "Question 1047107: Ten candidates apply for a job and are separately interviewed. Based on past experience, any candidate has a 65% chance of passing to a second interview. What is the probability that: [17]
\n" );
document.write( "At least eight candidates pass to a second interview
\n" );
document.write( "More than two but less than six candidates pass to a second interview
\n" );
document.write( "At most three candidates do not pass to a second interview
\n" );
document.write( "If 540 candidates applied for the job and were interviewed, what is the variance and the expected number of candidates that will pass to a second interview?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #662594 by ewatrrr(24785)![]() ![]() You can put this solution on YOUR website! Binomial distribution (EITHER MAKE IT THRU OR NOT) \n" ); document.write( "p(passing to 2nd Interview) = .65 and n = 10 \n" ); document.write( " TI syntax is binomcdf(n, p, largest x-value) for binomial ≤ cumulative probability \n" ); document.write( "P(x >= 8) = find P(x ≥ 8) = 1 – P(x ≤ 7) = 1 - binomcdf(20, .65, 7) = 1 - .006\r \n" ); document.write( "\n" ); document.write( "P(2 < x < 6) = p( 3 <= X ≤ 5) = binomcdf(20, .65, 5) - binomcdf(20, .65, 3) = .00030- .000006 \r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "P (x <= 3) = binomcdf(20, .65, 3) = .000006\r \n" ); document.write( "\n" ); document.write( "If 540 candidates applied for the job and were interviewed: \n" ); document.write( "Binomial distribution \n" ); document.write( "mean = np = .65(540) \n" ); document.write( "variance = npq= np(1-p) = .35(.65*540) \n" ); document.write( " \n" ); document.write( " |