Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Normal Distribution Functions Norm.dist(x, mean, stdev, c) - calculates the normal distribution for a given value of x, where mean and stdev are the
Normal Distribution Functions Norm.dist(x, mean, stdev, c) - calculates the normal distribution for a given value of x, where mean and stdev are the descriptive statistics of the variable in question. Generally, the c argument will always be set to 1, as that calculates the cumulative probability up to the value x. Norm.inv(p, mean, stdev) - calculates the inverse normal distribution. Specifically, given a probability p, it will return the corresponding value of x in the distribution described by mean and stdev. Standard Normal Distribution Functions = x- - Standardize(x, mean, stdev) - returns the standard normal value z for a given value of x with a distribution described by mean and stdev. Recall that z Norm.s.dist(z) - calculates the standard normal distribution for a given value of z. The mean and stdev arguments are not needed, as they are 0 and 1, respectively. Norm.s.inv(p) - calculates the inverse standard normal distribution. Specifically, it returns a value for z, corresponding to a given probability p. Cholesterol is a fatty substance that is an important part of the outer lining of cells in the body of animals. Its normal range for an adult is 120-240 mg/dl. The Food and Nutrition Institute of the Philippines found that the total cholesterol level for Filipino adults has a mean of 159.2 mg/dl and 84.1% of adults have a cholesterol level below 200 mg/dl. Suppose the total cholesterol level is normally distributed. 8) Estimate the standard deviation of this distribution? 40.8
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started