A manufacturing company produces bearings. One line of bearings is specified to be 1.64 centimeters (cm) in diameter. A major customer requires that the variance of the bearings be no more than 0.001 cm. squared. The producer is required to test the bearings before they are shipped, and so the diameters of 16 bearings are measured with a precise measurement. The resulting values are as follows 1.69, 1.62, 1.63, 1.70, 1.66, 1.63, 1.65, 1.71, 1.64, 1.69, 1.57, 1.64, 1.59, 1.66, 1.63, 1.65 Assume bearing diameters are normally distributed and αlpha (a) = 0.025, determine whether the population of these bearings is to be rejected because of too high variance.
SOLUTION
We have given the claim that the variance of the bearings be no more than 0.001 cm2
From given data, summary statistic are
Using R
> var(data)
[1] 0.001446667
> data = c( 1.69, 1.62, 1.63, 1.70, 1.66, 1.63, 1.65, 1.71, 1.64, 1.69, 1.57, 1.64, 1.59, 1.66, 1.63, 1.65)
> length(data)
[1] 16
> var(data)
[1] 0.001446667
sample variance
Test-statistics:
The critical value at with degrees of freedom is
Decision:
Do not Reject null hypothesis because test statistic value is less than critical value
Conclusion:
There is not sufficient evidence to the population of these bearings is to be rejected because of too high variance.
Comments