In: Statistics and Probability
Use your calculator to determine the probabilities. State what you put in for the lower limit, upper limit, mean and standard deviation.
1. Maple tree diameters in a forest area are normally distributed with mean 10 inches and standard deviation 2.5 inches. Find the percentage of trees having a diameter greater than 17 inches
2.White blood cell (WBC) count per cubic millimeter of whole blood follows approximately a Normal distribution with mean 7500 and standard deviation 1750. What percentage of people have WBC between 7500 and 8500?
3. Lifetimes of a certain brand of tires is approximately normally distributed with mean 40,500 miles and standard deviation 3,500 miles. What percentage of tires will last more than 50,000 miles?
4. The incomes of a set of factory workers happen to be normally distributed. The average income is $53,000 and the standard deviation is $5,000
USED R SOFTWARE.
SCREENSHOT IS;
Solution1:
Rcode:
library(tigerstats)
pnormGC(bound=17,region="above",
mean=10,sd=2.5,graph=TRUE)
0.00255513*100
ANSWER:
=2.6%
Solution2:
2.White blood cell (WBC) count per cubic millimeter of whole blood follows approximately a Normal distribution with mean 7500 and standard deviation 1750. What percentage of people have WBC between 7500 and 8500?
pnormGC(bound=c(7500 ,8500),region="between", mean=7500
,sd=1750,graph=TRUE)
0.2161454
=0.2161454*100
=21.61%
ANSWER:
21.61%
Solutionc:
Rcode:
pnormGC(bound=50000,region="above", mean=40500,sd=3500,graph=TRUE)
=0.003320943
=0.003320943*100
=0.3320943
=0.33%
ANSWER:
0.33%