Question 795384
Suppose the distribution of percentage of ideal body weight in a group of women with insulin dependent diabetes mellitus is normal with a mean of 175 lbs and standard deviation of 13. 
My question is: 
What body weight is considered obese (obese is defined as the top 20% of the subjects) 
Find the z-value with a left tail of 80%::
invNorm(0.8) = 0.8416
Find the corresponding weight value::
x = z*s + u
x = 0.8416*13+175 = 185.94 lbs.
-----------------------------
and what body weight is considered underweight (defined as in the bottom 10% for body weight)?
Find the z-value with left tail of 10%::
invNorm(0.1) = -1.2816
x = -1.2816*13+175 = 158.34 lbs
======================================== 
Cheers,
Stan H.