document.write( "Question 1047544: In a sample of 2016 U.S. adults, 242 said Richard Nixon was the worst president since World War II. Three U.S. adults are selected at random without replacement.
\n" );
document.write( "(a) Find the probability that all three adults say Richard Nixon was the worst president since World War II.
\n" );
document.write( "(b) Find the probability that none of the three adults say Richard Nixon was the worst president since World War II.
\n" );
document.write( "(c) Find the probability that at most two of the three adults say Richard Nixon was the worst president since World War II.
\n" );
document.write( "(d) Which of the events can be considered unusual? Explain.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #663158 by ewatrrr(24785)![]() ![]() You can put this solution on YOUR website! p(nixon) = 242/2016 = .12, n = 3 \n" ); document.write( "TI syntax for P(x-value) is binompdf(n, p, x-value). \n" ); document.write( "a)P(x = 3) = (3, .12, 3) \n" ); document.write( "b)P( x = 0) = (3, .12, 0) \n" ); document.write( "| \n" ); document.write( "c) P(x <=2) \n" ); document.write( "I syntax is binomcdf(n, p, largest x-value) for binomial ≤ cumulative probability \n" ); document.write( "P(x <=2) = binomcdf(3, .12, 2) \n" ); document.write( "d) One with smallest probability \n" ); document.write( " |