Supplementary Exercise 1.127 of IPS7e ------------------------------------- X = cholesterol levels of women aged 20-34, measured in mg/dL. Assume X to follow N(185,39). Denote also (as usual) by Z a random variable from N(0,1). (a) compute P(X>240) In the extended notation of the textbooks we would write X > 240 or (X-185)/39 > (240-185)/39 or Z > 1.41026 which gives us the z-score z=1.41026, and tells us we need to calculate P(Z>1.41026). In a more condensed notation, we may write P(X>240) = P((X-185)/39) > (240-185)/39) = P(Z>1.41026) = P(Z<-1.41026) = 0.0792 (computer), or 0.0793 (Table A). We conclude that about 8% of the women have cholesterol levels that require medical attention. (b) compute P(200 CDF 240; SUBC> Normal 185 39. Cumulative Distribution Function Normal with mean = 185 and standard deviation = 39 x P( X <= x ) 240 0.920768 MTB > CDF 200; SUBC> Normal 185 39. Cumulative Distribution Function Normal with mean = 185 and standard deviation = 39 x P( X <= x ) 200 0.649739 --- Minitab commands and listing for all calculations (using constants k1,k2,...): MTB > CDF 240 k1; SUBC> Normal 185 39. MTB > Let k2 = 1-k1 MTB > Print K1 K2. Data Display K1 0.920768 K2 0.0792320 Note: K2 is the probability for (a). MTB > CDF 200 k3; SUBC> Normal 185 39. MTB > let k4=k1-k3 MTB > print k3 k4 Data Display K3 0.649739 K4 0.271029 Note: K4 is the probability for (b).