document.write( "Question 903707: The mean gas mileage for a hybrid car is 56 miles per gallon. Suppose that the gasoline mileage is aprox normally distributed with a standard diviation of 3.2 miles per gallon. Round 3 decimal places. a) what is the probability that a randomly selected hybrid gets more than 61 miles per gallon? b)what is the probability that a randomly selected hybrid gets more than 50 miles per gallon or less? c) what is the probability that a randomly selected hybrid gets between 58 and 61 miles per galon? d) what is the probability that a randomly selected hybrid gets less than 45 miles per gallon? \n" ); document.write( "
Algebra.Com's Answer #548236 by ewatrrr(24785)![]() ![]() You can put this solution on YOUR website! P(x < value) = P(x ≤ value). \n" ); document.write( "TI syntax is normalcdf(smaller, larger, µ, σ). \n" ); document.write( "Note: The -999 is used as the smaller value to be at least 5 standard deviations from the mean.\r \n" ); document.write( "\n" ); document.write( "a) what is the probability that a randomly selected hybrid gets more than 61 miles per gallon? \n" ); document.write( "1- normalcdf(-999,61,56,3.2) \n" ); document.write( "b)what is the probability that a randomly selected hybrid gets more than 50 miles per gallon or less? \n" ); document.write( "nomalcdf(-999, 50,56,3.2) \n" ); document.write( "c) what is the probability that a randomly selected hybrid gets between 58 and 61 miles per gallon? \n" ); document.write( "normalcdf(58,61, 56,3.2) \n" ); document.write( "d) what is the probability that a randomly selected hybrid gets less than 45 miles per gallon? \n" ); document.write( "normal(-999,44,56,3.2) \n" ); document.write( " |