We are given,
μ=1500, σ=6
To find the range, we are required to find the probability
p(x0<X<x1)=0.9375, where x0 is the lower bound value and x1 is the upper bound value.
We have to standardize since we are given the population mean (μ) and variance (σ) as below
p((x0−μ)/σ<(X−μ)/σ<(x1−μ)/σ)=0.9375
This can be written as,
p((x0−μ)/σ<Z<(x1−μ)/σ)=0.9375
Define,
Z0=(x0−μ)/σ and Z1=(x1−μ)/σ
Now we have,
p(Z0<Z<Z1)=0.9375
The point Z0 leaves an area of (1−0.9375)/2=0.03125 to the left and the point Z1 leaves an area of (1−0.9375)/2=0.03125 to the right because of symmetry.
So,
p(Z<Z0)=0.03125 and we can obtain the value of Z0 from standard normal tables using the command qnorm(0.03125)=−1.862732 in R. Thus Z0=−1.862732.
Since Z0=(x0−μ)/σ=−1.862732, we can obtain the value of x0 by substituting for μ and σ as below,
(x0−1500)/6=−1.862732
x0=(6∗−1.862732)+1500=1488.82361
The area to the left of Z1 is (1−0.03125)=0.96875. We can express this as,
p(Z<Z1)=0.96875. Z1 can be obtained from the standard normal tables using the command qnorm(0.96875)=1.862732 in R . Hence, Z1=1.862732.
Since Z1=(x1−μ)/σ=1.862732, the value of x1 can be found by substituting for μ and σ as,
(x1−1500)/6=1.862732
x1=(6∗1.862732)+1500=1511.17639.
Therefore, (1488.82,1511.18) is a range in which it can be guaranteed that 93.75% of the lifetimes of this brand of car lie.
Comments