document.write( "Question 1000341: The Census Bureau’s Current Population Survey shows that 28% of individuals, ages 25 and older, have completed four years of college. For a sample of 15 individuals, ages 25 and older, answer the following questions:\r
\n" );
document.write( "\n" );
document.write( "a. What is the probability four will have completed four years of college?\r
\n" );
document.write( "\n" );
document.write( "b. What is the probability three or more will have completed four years of college
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #617797 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! The Census Bureau’s Current Population Survey shows that 28% of individuals, ages 25 and older, have completed four years of college. For a sample of 15 individuals, ages 25 and older, answer the following questions: \n" ); document.write( "----- \n" ); document.write( "Binomial Problem with n = 15 and p(completed college) = 0.28 \n" ); document.write( "------- \n" ); document.write( "a. What is the probability four will have completed four years of college? \n" ); document.write( "P(x = 4) = 15C4*0.28^4*0.72^11 = binompdf(15,0.28,4) = 0.2262 \n" ); document.write( "--------------------------- \n" ); document.write( "b. What is the probability three or more will have completed four years of college? \n" ); document.write( "P(3<= x <=15) = 1 - P(0<= x <=2) = 1 - binomcdf(15,0.28,2) = 0.8355 \n" ); document.write( "--------------- \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "------------- \n" ); document.write( " |