document.write( "Question 912337: An airline estimates that 97% of people booked on their flights actually show up.
\n" );
document.write( "If the airline books 61 people on a flight for which the maximum number is 59,
\n" );
document.write( "what is the probability that the number of people who show up will exceed the
\n" );
document.write( "capacity of the plane?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #553766 by ewatrrr(24785)![]() ![]() You can put this solution on YOUR website! p = .97, n = 61 \n" ); document.write( "P(x >59) = 1 - P(x ≤ 59) = 1 - binomcdf(61, .97, 59) \n" ); document.write( " |