Module 15: Advanced Topics and Engineering Applications

Supporting Lectures:
EGN3443 Module 15 - Advanced Topics in Statistics in Engineering

1. Design of Experiments (DoE) Basics

Definition

Design of Experiments (DoE) is a systematic method for determining the relationship between factors affecting a process and the output of that process. It allows researchers to understand how different input variables impact the final result with minimal experimental runs.

Key Concepts

Example Calculation

Two-Factor Factorial Design Example: Consider a manufacturing process with two factors:

Experimental Matrix:

Run

Temperature (A)

Pressure (B)

Yield

1

Low (1)

Low (1)

85.2

2

Low (1)

High (2)

92.7

3

High (2)

Low (1)

88.5

4

High (2)

High (2)

95.3

Web References

2. Statistical Quality Control Introduction

Definition

Statistical Quality Control (SQC) is a methodology used to monitor, control, and improve product quality through statistical methods, focusing on reducing variability in manufacturing and service processes.

Key Techniques

Example Calculation: X-bar Control Chart

Process Mean Calculation:

  1. Collect subgroup samples

  2. Calculate subgroup means

  3. Determine control limits

Sample Calculation:

Web References

3. Bootstrap Methods

Definition

Bootstrap is a resampling technique used to estimate the sampling distribution of a statistic by repeatedly sampling with replacement from the original dataset.

Key Applications

Python Example

import numpy as np

def bootstrap_mean(data, num_iterations=1000):

    bootstrap_means = []

    for _ in range(num_iterations):

        sample = np.random.choice(data, size=len(data), replace=True)

        bootstrap_means.append(np.mean(sample))

    

    return np.mean(bootstrap_means), np.std(bootstrap_means)

# Example usage

data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

mean_estimate, std_estimate = bootstrap_mean(data)

Web References

4. Bayesian Statistics Introduction

Definition

Bayesian statistics is a mathematical approach to data analysis based on Bayes' theorem, which updates probability estimates as more information becomes available.

Key Concepts

Example Calculation: Bayes' Theorem

P(A|B) = [P(B|A) * P(A)] / P(B)

Where:

Web References

5. Final Project Presentations and Course Review

Presentation Guidelines

Course Review Checklist

Recommended Resources