Answer:
(a) 99.68% of the bearings will last for 30,000,000 cycles
(b) The manufacturer should put 30,181,494 cycles of warranty time on the bearings
Explanation:
Let X be the random variable that represents the cycles of the bearings. We know that X is approximately normally distributed with a mean of
= 30, 457, 500 cycles and a standard deviation of
= 167, 800 cycles. Then, we can assume that the normal probability density function for X is given by
![f(x) = \frac{1}{\sqrt{2\pi(167800)^(2)}}\exp[-((x-30457500)^(2))/(2(167800)^(2))]](https://img.qammunity.org/2020/formulas/mathematics/college/w7nt6sc0j87mpzoqj30sno963ty4u2t6cy.png)
(a) To answer this question, we should to compute the next probability
, i.e., the probability that the cycles of a bearing is equal or greater than 30,000,000.
. So,
99.68% of the bearings will last for 30,000,000 cycles.
pnorm(30000000, mean = 30457500, sd = 167800, lower.tail = FALSE) (execute this in the R statistical programming language)
(b) We are looking for a value
such that
and this value is
= 30,181,494 cycles, i.e., we found the 5th percentile.
qnorm(0.05, mean = 30457500, sd = 167800) (execute this in the R statistical programming language)
You can use a table from a book to compute this figures or a programming language like the R statistical programming language.