207k views
4 votes
A sample of 200 ROM computer chips was selected on each of 30 consecutive days, and the number of nonconforming chips on each day was as follows: The data has been given so that it can be copied into R as a vector. non.conforming c(9, 16, 24, 18, 36, 19, 6, 26, 8, 25, 30, 17, 16, 19, 15, 20, 13, 22, 9, 23, 18, 15, 15, 25, 32, 19, 12, 23, 15, 26) #Construct a p chart by using the following code. You will need to enter your values for pbar, LCL and UCL. pbar LCL = UCL = plot(non.conforming/200, ylimc(0,.5)) abline(h pbar, Ity 2) abline(h LCL, Ity 3) abline(h UCL, Ity 3) Construct a p chart and examine it for any out-of-control points. (Round your answers to four decimal places.) LCL = UCL = 0.25 0.20 0.15 0.10 0.05 0.00 0.25 0.20 0.15 UCL .UCL LCI 0.05t LCL 0.00 5 10 15 20 25 30 5 10 15 20 25 30 0.25 0.20 0.15 0.10 0.05 0.00 O-0.05 0.25 0.20 0.15 0.10 0.05 o 0.00 UCL UCL LCL LCL 5 10 15 20 25 30 Day 5 10 15 20 25 30

Comment on the chart
A) Most points are between these limits, so the process appears to be in control with respect to variability
B) All points are between these limits, so the process appears to be out of control
C) All points are between these limits, so the process appears to be in control
D) The value of S on the 5th day lies above the UCL, so an out-of-control signal is generated
E) The value of s on the 5th day lies below the LCL, so an out-of-control signal is generated

1 Answer

0 votes

Answer:

A) Most points are between these limits, so the process appears to be in control with respect to variability.

D) The value of S on the 5th day lies above the UCL, so an out-of-control signal is generated.

Explanation:

We have the data of 30 days of daily samples, of size n=200. The data is expressed in "number of non-conforming chips". To graph the data in a p-chart, we have to calculate the proportion, so we have to divide the number of non-conforming chips in each sample by the sample size in order to get the proportion.

The data of non-conforming chips es:

[9 16 24 18 36 19 6 26 8 25 30 17 16 19 15 20 13 22]

The proportion of non-conforming chips is calculated as:


p_i=(x_i)/(n)=(x_i)/(200)

Then, the proportions of non-conforming chips are:

[0.045 0.08 0.12 0.09 0.18 0.095 0.03 0.13 0.04 0.125 0.15 0.085 0.08 0.095 0.075 0.1 0.065 0.11 0.045 0.115 0.09 0.075 0.075 0.125 0.16 0.095 0.06 0.115 0.075 0.13

]

For the p-chart we calculate the average proportion:


\bar{p}=(1)/(30)\sum p_i=(2.855)/(30)\approx0.095

Then, we calculate the control limits as:


\bar{p}\pm\sqrt{\frac{\bar{p}(1-\bar{p})}{m}}\\\\\\0.095\pm\sqrt{(0.095\cdot0.905)/(30)}=0.095\pm0.054\\\\\\LCL=0.095-0.054=0.041\\\\UCL=0.095+0.054=0.149

With these values, we can graph the data in the p-chart.

We can see that most points are within these limits, as it is expected (we are calculating the control limits with the same data we are charting). There are 5 out of 30 (one sixth of the samples) that are outside the control limits but there are not more than one consecutive points outside the contorl limits, so we can conclude that the process is in control.

The value of the 5th day (p=0.180) is over the UCL (UCL=0.149), so an out-of-control signal is generated. As the 6th day sample is in control (p=0.095), we could conclude that a special condition makes the 5th day sample lies outside the control limits.

A sample of 200 ROM computer chips was selected on each of 30 consecutive days, and-example-1
User Donfuxx
by
4.6k points