askvity

How to Calculate Upper Control Limit?

Published in Statistical Control 2 mins read

The upper control limit (UCL) is calculated by adding three times the standard deviation to the average of the data being analyzed.

Here's a breakdown of the process:

1. Calculate the Average (Mean):

  • Sum all the data points in your sample.
  • Divide the sum by the number of data points. This gives you the average (X̄).
    • Formula: X̄ = (ΣXi) / n, where Xi is each data point and n is the number of data points.

2. Calculate the Standard Deviation:

  • Determine the deviation of each data point from the average (Xi - X̄).
  • Square each of these deviations (Xi - X̄)².
  • Sum all the squared deviations (Σ(Xi - X̄)²).
  • Divide the sum of squared deviations by (n-1), where n is the number of data points. This is the sample variance.
  • Take the square root of the sample variance to get the standard deviation (s).
    • Formula: s = √[Σ(Xi - X̄)² / (n-1)]

3. Calculate the Upper Control Limit (UCL):

  • Multiply the standard deviation (s) by 3.
  • Add this value to the average (X̄).
    • Formula: UCL = X̄ + 3s

Example:

Let's say you have the following data points: 10, 12, 14, 11, 13.

  1. Average (X̄): (10 + 12 + 14 + 11 + 13) / 5 = 60 / 5 = 12

  2. Standard Deviation (s):

    • Deviations from the mean: -2, 0, 2, -1, 1
    • Squared deviations: 4, 0, 4, 1, 1
    • Sum of squared deviations: 10
    • Variance: 10 / (5-1) = 10 / 4 = 2.5
    • Standard Deviation: √2.5 ≈ 1.58
  3. Upper Control Limit (UCL): 12 + (3 * 1.58) = 12 + 4.74 = 16.74

Therefore, the Upper Control Limit for this data set is 16.74.

The UCL is a key component of control charts, used to monitor processes and identify when they are out of statistical control. Data points exceeding the UCL may indicate a problem or special cause variation that needs investigation.

Related Articles