2.1 Probability Distributions, PMFs, and PDFs
Key Takeaways
- Conditional probability P(A|B) = P(A ∩ B) / P(B) and Bayes' Theorem enable updating failure or defect probabilities based on observational or test evidence.
- The Binomial distribution models discrete independent trials with constant success probability p, yielding mean mu = n*p and variance sigma^2 = n*p*(1-p).
- The Poisson distribution describes random event counts occurring at a constant average rate lambda over a fixed interval, where both mean and variance equal lambda.
- Continuous random variables are defined by PDFs where the total area under f(x) equals 1, and standard normal variables are transformed via Z = (X - mu) / sigma.
- The Exponential distribution models component time-to-failure for constant failure rate systems, featuring memoryless reliability R(t) = e^(-lambda*t) and mean MTBF = 1/lambda.
2.1 Probability Distributions, PMFs, and PDFs
Probability and statistics provide the mathematical foundation for managing uncertainty, evaluating component reliability, performing quality control, and interpreting experimental data on the FE Other Disciplines exam. This section covers the fundamental rules of probability, conditional probability, Bayes' Theorem, and the primary discrete and continuous distributions specified in the NCEES FE Reference Handbook.
1. Fundamentals of Probability
An event $A$ is a subset of a sample space $S$. The probability of an event $P(A)$ satisfies the basic Kolmogorov axioms:
- $0 \le P(A) \le 1$
- $P(S) = 1$
- For mutually exclusive (disjoint) events $A$ and $B$, $P(A \cup B) = P(A) + P(B)$
Union and Intersection Rules
For any two events $A$ and $B$, the general addition rule is:
If $A$ and $B$ are independent, the occurrence of one does not alter the probability of the other, so:
Conditional Probability and Bayes' Theorem
The conditional probability of event $A$ occurring given that event $B$ has already occurred is:
By rearranging, the multiplication rule is $P(A \cap B) = P(A|B) P(B) = P(B|A) P(A)$.
Law of Total Probability
If $A_1, A_2, \dots, A_k$ form a partition of the sample space $S$ (mutually exclusive and exhaustive), then for any event $B$:
Bayes' Theorem
Bayes' Theorem allows updating prior probabilities $P(A_k)$ based on observed evidence $B$:
Worked Engineering Example: Quality Inspection & Bayes' Theorem
Problem: A manufacturing plant operates two automated assembly lines. Line 1 produces 60% of all electronic control units (ECUs) and has a defect rate of 2.0%. Line 2 produces 40% of all ECUs and has a defect rate of 5.0%. If an ECU selected at random is found to be defective, what is the probability it was manufactured on Line 2?
Solution: Let $L_1$ and $L_2$ be the events that an ECU comes from Line 1 and Line 2, respectively. Let $D$ be the event that an ECU is defective. Given parameters:
- $P(L_1) = 0.60, \quad P(L_2) = 0.40$
- $P(D|L_1) = 0.020, \quad P(D|L_2) = 0.050$
Step 1: Compute overall probability of a defect $P(D)$ using Total Probability:
Step 2: Apply Bayes' Theorem to find $P(L_2|D)$: Conclusion: Although Line 2 produces fewer total units, a defective unit has a 62.5% probability of coming from Line 2 because of its higher defect rate.
2. Discrete Probability Distributions (PMFs)
A discrete random variable $X$ takes on distinct, countable values. Its probability distribution is defined by a Probability Mass Function (PMF) $p(x) = P(X = x)$, where:
A. Binomial Distribution
The Binomial distribution models the number of successes $X = k$ in $n$ independent Bernoulli trials, each having a constant probability of success $p$ (and failure probability $q = 1 - p$).
NCEES Formula
B. Poisson Distribution
The Poisson distribution models the number of rare events $X = x$ occurring randomly across a continuous interval of time, length, area, or volume at a constant average rate $\lambda$.
NCEES Formula
If the rate is given as $\mu_0$ per unit interval and the interval length is $t$, then $\lambda = \mu_0 t$.
Worked Engineering Example: Binomial & Poisson Calculations
Problem A (Binomial): A quality control engineer samples $n = 10$ structural bolts from a batch with a known defect rate of $p = 0.05$. Calculate the probability of finding exactly 2 defective bolts, and find the mean and variance of defective bolts per sample.
Solution A: Mean $\mu = np = 10 \times 0.05 = 0.50$ bolts. Variance $\sigma^2 = np(1-p) = 10 \times 0.05 \times 0.95 = 0.475$ bolts$^2$.
Problem B (Poisson): Microscopic surface cracks in a turbine blade occur at an average rate of $\mu_0 = 1.5$ cracks per meter. Find the probability that a 2-meter section of blade has exactly 3 cracks.
Solution B: For a length $t = 2\text{ m}$, the expected number of cracks is $\lambda = \mu_0 t = 1.5 \times 2 = 3.0$. .
3. Continuous Probability Distributions (PDFs)
A continuous random variable $X$ can take any real value within a continuous range. Its distribution is defined by a Probability Density Function (PDF) $f(x)$, where:
For continuous variables, the probability at any single point is zero: $P(X = a) = 0$. Probabilities are evaluated over intervals using the Cumulative Distribution Function (CDF) $F(x)$:
A. Continuous Uniform Distribution
A continuous random variable $X$ uniformly distributed over interval $[a, b]$ has equal probability density across its domain.
NCEES Formula
B. Normal (Gaussian) Distribution
The Normal distribution is symmetric and bell-shaped, parameterized by mean $\mu$ and variance $\sigma^2$.
NCEES Formula
To find probabilities for $X \sim N(\mu, \sigma^2)$, transform to the standard normal distribution $Z \sim N(0, 1)$ and look up probabilities in the standard normal cumulative table $\Phi(z) = P(Z \le z)$. Key standard normal probabilities:
- $P(-1 \le Z \le 1) \approx 68.27%$
- $P(-2 \le Z \le 2) \approx 95.45%$
- $P(-3 \le Z \le 3) \approx 99.73%$
C. Exponential Distribution
The Exponential distribution models the continuous time between Poisson events or component time-to-failure under a constant failure rate $\lambda$.
NCEES Formula
The Exponential distribution is memoryless: $P(T > t + s \mid T > s) = P(T > t)$.
4. Worked Engineering Example: Normal Distribution & Reliability
Problem: Compressive strength tests of concrete batches yield a normal distribution with mean $\mu = 35.0\text{ MPa}$ and standard deviation $\sigma = 4.0\text{ MPa}$. Structural design standards require a minimum compressive strength of $30.0\text{ MPa}$.
- What fraction of concrete batches will fail to meet the $30.0\text{ MPa}$ design specification?
- If the project engineer wants no more than 1.0% of batches to fail specification, what minimum mean strength $\mu_{new}$ must the mixing plant achieve, assuming $\sigma$ remains $4.0\text{ MPa}$?
Solution:
Part 1: Calculate $P(X < 30.0\text{ MPa})$: Compute the standardized $Z$-score: Using standard normal table symmetry $\Phi(-z) = 1 - \Phi(z)$:
Part 2: Target failure rate is $P(X < 30.0) = 0.010$. From standard normal tables, $P(Z < z_{crit}) = 0.010 \implies z_{crit} = -2.326$.
5. Summary Table of NCEES Probability Distributions
| Distribution | Type | PMF / PDF $f(x)$ | Mean $\mu$ | Variance $\sigma^2$ | Key Applications |
|---|---|---|---|---|---|
| Binomial | Discrete | $\binom{n}{k} p^k (1-p)^{n-k}$ | $n p$ | $n p (1-p)$ | Batch sampling, defect inspection |
| Poisson | Discrete | $\frac{\lambda^x e^{-\lambda}}{x!}$ | $\lambda$ | $\lambda$ | Flaw counts, call/arrival rates |
| Uniform | Continuous | $\frac{1}{b-a}$ | $\frac{a+b}{2}$ | $\frac{(b-a)^2}{12}$ | Tolerances, quantization noise |
| Normal | Continuous | $\frac{1}{\sigma\sqrt{2\pi}} e^{-\frac{(x-\mu)^2}{2\sigma^2}}$ | $\mu$ | $\sigma^2$ | Material strengths, measurement noise |
| Exponential | Continuous | $\lambda e^{-\lambda x}$ | $\frac{1}{\lambda}$ | $\frac{1}{\lambda^2}$ | Time-to-failure, MTBF, queueing |
Quality control testing shows that 3% of manufactured integrated circuits are defective. In a random batch of 8 circuits, what is the probability that exactly 1 circuit is defective?
Surface flaws on a roll of sheet metal occur according to a Poisson process with an average rate of 0.4 flaws per meter. What is the probability that a 5-meter sheet of metal contains fewer than 2 flaws?
Steel rod diameters produced by a lathe are normally distributed with a mean of 20.00 mm and a standard deviation of 0.05 mm. Rods with diameters exceeding 20.08 mm fail tolerance specs. What fraction of rods will fail tolerance?
The time until failure of a specialized electronic sensor follows an exponential distribution with a failure rate lambda = 0.002 failures per hour (MTBF = 500 hours). What is the probability that a sensor functions continuously without failure for at least 750 hours?