document.write( "Question 323536: Approximately 53% of all the US population have at least some college education. Choose 10 people at random. Find the probabilities.
\n" );
document.write( "A.Exactly 1/2 have some college education
\n" );
document.write( "B.At least 1 has some college education
\n" );
document.write( "C.Fewer than 5 have some college education
\n" );
document.write( "D. What is the most likely number of people that have some college education?\r
\n" );
document.write( "\n" );
document.write( "For parts A and B I used the factorial equation: P(x)= n!/x!(n-x)! *p^x(1-p)^n-x\r
\n" );
document.write( "\n" );
document.write( "For A I got: .242
\n" );
document.write( "For B I got: .006\r
\n" );
document.write( "\n" );
document.write( "Am I using the right equation to solve this problem?? I am really confused when it comes to part C and D. If you can let me know if I am using the right equation, and if my answers are correct, that would be great. Can you show me how to solve Part C and D? Thanks!! \n" );
document.write( "
Algebra.Com's Answer #231634 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! Approximately 53% of all the US population have at least some college education. Choose 10 people at random. Find the probabilities. \n" ); document.write( "--- \n" ); document.write( "Binomial problem with n=10 ; p = 0.53 \n" ); document.write( "--- \n" ); document.write( "A.Exactly 1/2 have some college education \n" ); document.write( "P(x=5) = 10C5*(0.53)^5(0.47)^5 = 0.2417 \n" ); document.write( "---------------------------------------------- \n" ); document.write( "B.At least 1 has some college education \n" ); document.write( "P(x>=1) = 1 - P(x = 0) \n" ); document.write( "= 1 - 10C0(0.53)^0*0.47^10 \n" ); document.write( "= 1 - 0.47^10 \n" ); document.write( "= 0.9997 \n" ); document.write( "==================================================== \n" ); document.write( "C.Fewer than 5 have some college education \n" ); document.write( "I used a TI-84 to get: \n" ); document.write( "P(0<= x <=4) = binomcdf(10,0,53,4) = 0.3057 \n" ); document.write( "----------------------------------------------------- \n" ); document.write( "D. What is the most likely number of people that have some college education? \n" ); document.write( "mean = E(x) = np = 10*0.53 = 5.3 people \n" ); document.write( "========================================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H.\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( "For parts A and B I used the factorial equation: P(x)= n!/x!(n-x)! *p^x(1-p)^n-x \n" ); document.write( "For A I got: .242 \n" ); document.write( "For B I got: .006 \n" ); document.write( " \n" ); document.write( " |