Answer on Question #44181 - Math - Statistics and Probability
Case Study 1. Suppose that Body Mass Index (BMI) for a population of 30-60-year-old men follows a Normal distribution with mean 26, and standard deviation 4. Please calculate the range of BMI that of subjects fall within? For a randomly selected 30-60-year old man, what is the probability that he is obese (i.e. )?
Solution:
a). To calculate the range of BMI that of subjects fall within we need to determine left and right probability borders centered at mean . The borders will be and and the probability of will be the area under the curve colored in blue (see Fig.1).
Using standard table of normal distribution, we calculate z-scores for given probabilities:
For z-score is
For z-score is
Using calculated z-score, we determine left and right borders using the formula .
Fig 1.
b) To determine probability of we need to calculate z-score for this value:
Then, using standard table of normal distribution, we find the probability: 0.8413
This is the probability that randomly selected 30-60-year old man has . The probability that he has is:
Answer:
a) the range is from 18.16 to 33.84
b) the probability is 0.1587 or
R code:
a) qnorm(0.025, 26, 4); qnorm(0.975, 26, 4);
b) 1 - pnorm(30, 26, 4)
www.AssignmentExpert.com
Comments