Question 1072194
 The annual per capita consumption of ice cream​ (in pounds) in the United States can be approximated by a normal distribution with mean of 14 lbs and a standard deviation of 2.1 lbs.

a. What percent of the population consumes at most 10 lbs​ yearly?
z(10) = (10-14)/2.1 = -1.9047
----
Find the percentage below that z-value
P(x <= 10) = P(z <= -1.9047) = normalcdf(-100,-1.9047) = 0.0284
--------------
b. Jack estimates that&#8203; 24% of the population eats -more ice cream than he does. Find how much ice cream he eats per year.
Find the z-value with a right tail of 0.24
invNorm(0.76) = 0.7063
Find the corresponding raw score value::
x = 0.7063*2.1 + 14
x = 15.48 lbs (Amt. he consumes yearly)
------------

c. Between what two values does the middle&#8203; 80% of the consumption&#8203; lie?
Find the z-value with a left tail of 10%
invNorm(0.1) = -1.2816
Find the correspond lbs at +1.2816 and -1.2816
x = 1.2816*2.1+14 and x = -1.2816*2.1+14
Those are the upper and lower limits of the interval.
Cheers,
Stan H.
-------------