document.write( "Question 1147246: A high school baseball player has a 0.272 batting average. In one game, he gets 5 at bats. What is the probability he will get at least 2 hits in the game? Round your answer to 3 decimal places.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #768584 by greenestamps(13200)![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "Straightforward binomial probability calculations -- although very cumbersome. \n" ); document.write( "At least 2 hits in 5 at bats means NOT 0 or 1 hits. So \n" ); document.write( "1 - ((P(0 hits)+P(1 hit)) \n" ); document.write( " \n" ); document.write( "A good scientific calculator will do all the ugly computations for you. \n" ); document.write( "On the TI-83, binomcdf(a,b,c) will calculate the cumulative probability of AT MOST c successes in a trials if the probability of success on each trial is b. \n" ); document.write( "To find binomcdf, press 2nd-VARS (DISTR) and scroll down to A:binomcdf \n" ); document.write( "Again, since you want the probability of AT LEAST 2 hits, you want to calculate 1 minus the probability of AT MOST 1 hit: \n" ); document.write( "1 - binomcdf(5,.272,1) \n" ); document.write( " |