Answer :
Final answer:
To find specific probabilities or values in a normal distribution, calculate the Z-score first. Use the pnorm function in R for probabilities and the qnorm function for values. A Z-score represents how many standard deviations a value is from the mean.
Explanation:
The length of rose stems can be analyzed using a Normal Distribution and the Z-Score concept.
To find the probability that a given rose stem will be shorter than 17.3 inches, we need to calculate the Z-score which is (17.3 - 19.78) / 3.787 to obtain the Z value. This value can then be plugged into R's pnorm function to get the probability.
For a 'long stem rose' longer than 23.8 inches, the Z-score will be (23.8 - 19.78) / 3.787. The pnorm function in R will then give 1 - the probability because we want longer than this length, not shorter.
Using R's qnorm function with 0.08 (for the shortest 8%) as the probability, the mean, and the standard deviation as arguments, we can find the maximum stem length a rose can be to qualify as a corsage.(qnrom(0.08, 19.78, 3.787))
A Z-score of 1.26 means that the length of the stem is 1.26 standard deviations longer than the average rose stem. So, answer C is correct.
Learn more about Normal Distribution
brainly.com/question/31322979
#SPJ11