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. 5 1 point earned 6 Assume that the weights of individuals are independent and normally distributed with a mean of 160 pounds and a standard deviation of 30 pounds. Suppose that 25 people squeeze into an elevator that is designed to hold 4300 pounds. 2a) What is the probability that the load (total weight) exceeds the design limit? 0.0227 1 point earned 2b) What design limit is exceeded by 25 occupants with probability 0.0001? 4,558
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