Six Sigma: Big Picture

  • Statistical methodology for improving process quality

  • Focuses on reducing variability and defects

  • Originated at Motorola

  • Widely used in:

  • Engineering

  • Healthcare

  • Finance

  • Manufacturing

Core idea: better data → better decisions

What Does “Six Sigma” Mean?

A process operating at Six Sigma quality produces:

  • 3.4 defects per million opportunities (DPMO)

  • Extremely low variability

  • Highly predictable outcomes

Achieved through:

  • Normal distributions

  • Process capability analysis

  • Hypothesis testing

  • Continuous improvement

Process Variation and Statistics

Most Six Sigma models assume a normal process:

\[ X \sim \mathcal{N}(\mu, \sigma^2) \]

Where:

μ = process mean

σ = process standard deviation

Reducing σ is the key to improving quality.

Six Sigma and Probability (Math)

A Six Sigma process satisfies:

\[ P(|X - \mu| > 6\sigma) \approx 0 \]

This implies nearly all observations fall within: \[ \mu \pm 6\sigma \]

Result: defects become extremely rare.

Defects Per Million Opportunities (Math)

Defect rate is computed using the normal CDF:

\[ \text{DPMO} = (1 - \Phi(Z)) \times 10^6 \]

Where:

Z = sigma level

Φ = standard normal distribution

At \[ Z = 6 \]

\[ \text{DPMO} \approx 3.4 \]

Example: Simulated Manufacturing Process

We simulate a stable process with small variability.

set.seed(123)

process_data <- data.frame(
  value = rnorm(1000, mean = 50, sd = 2)
)

LSL <- 44
USL <- 56

Specifications: Target mean: 50 Lower specification limit: 44 Upper specification limit: 56

Process Distribution (ggplot)

Sigma Regions Visualization (ggplot)

3D View: Variability, Shift, and Defects

Why Six Sigma Matters

  • Reduces waste and operational cost
  • Improves reliability and consistency
  • Demonstrates statistics in real-world decision making
  • Widely recognized in industry

Six Sigma connects theory, data, and impact.

Key Takeaways

  • Six Sigma is fundamentally statistical
  • Reducing variation improves quality
  • Normal distributions drive defect modeling
  • R enables reproducible, professional analysis