Understanding Probability Distributions
This mini-lesson explains three fundamental probability distributions - binomial, uniform, and normal - through clear definitions, many worked examples, and step-by-step instructions aimed at beginners working in a manufacturing/quality-control context. You will learn how to compute probabilities, interpret results, and combine these tools to make practical decisions on the production line.
Probability distributions
A probability distribution tells you how likely different outcomes are. On the one hand, in discrete outcomes (like "how many defective rods"), we list probabilities for each possible count. For continuous measurements (like length or weight), on the other hand, we describe density across a range. General discrete vs continuous formulas:
P(X∈A)=x∈A∑p(x)(discrete)P(a≤X≤b)=∫abf(x)dx(continious)Example (quick check): If a process guarantees all lengths between 49.5 and 50.5 cm are equally likely, the probability a rod lies in a 0.4 cm sub-range will be the sub-range width divided by 1.0 cm (this is the uniform idea — below we show it in detail).
Binomial distribution
The binomial models the number of successes (e.g., defective rods) in a fixed number of independent trials (e.g., 100 rods), when each trial has the same probability of success.
Formula:
P(X=k)=(nk)pk(1−p)n−kExample:
In a batch of n=100 rods where each rod independently has probability p=0.02 of being defective, what is the probability of exactly k=3 defective rods?
Step 1 — compute the combination:
(1003)=3!97!100!=161700Step 2 — compute powers:
p3=0.023=0.000008(1−p)97=0.9897≈0.1409059532Step 3 — multiply all parts:
P(X=3)=161700×0.000008×0.1409059532≈0.182275941What this means: About 18.23% chance of exactly 3 defective rods in a 100-rod sample. If you see 3 defects, that is a plausible outcome.
If your computed probability seems larger than 1 or negative, re-check the combination or the power calculations. Also compare a binomial pmf value to the cdf if you want "at most" or "at least" answers.
Uniform distribution
The uniform distribution models a continuous measurement where every value within a range [a,b] is equally likely (e.g., a tolerance range for rod length).
Formula:
f(x)=b−a1,a≤x≤bProbability between two points:
P(l≤X≤u)=b−au−lExample:
Parameters: a=49.5, b=50.5. What is the probability a rod length X lies between 49.8 and 50.2? Compute range width:
b−a=50.5−49.5=1.0Compute sub-interval:
u−l=50.2−49.8=0.4Probability:
P(49.8≤X≤50.2)=1.00.4=0.4Interpretation: There is a 40% chance a randomly measured rod will fall in this tighter tolerance.
Make sure a<b and your sub-range is inside [a,b]; otherwise you must clip the endpoints and treat outside ranges with probability 0.
Normal distribution
The normal distribution describes continuous measurements that cluster around a mean μ with spread measured by standard deviation σ. Many measurement errors and natural variations follow this bell-shaped curve.
Formula:
f(x)=σ2π1e−2σ2(x−μ)2Standardize with z-score:
z=σx−μProbability between two values uses the cumulative distribution (CDF) or symmetry for standard cases:
P(a≤X≤b)=Φ(σb−μ)−Φ(σa−μ)Here Φ is the standard normal CDF.
Example A:
Parameters: μ=200, σ=5, find P(195≤X≤205).
Z-scores:
z1=5195−200=−1z2=5205−200=1Using the symmetry of the normal distribution, the probability between −1 and +1 standard deviation is the well-known:
P(195≤X≤205)≈0.6826894921Interpretation: About 68.27% of rod weights fall within ±1 standard deviation of the mean — a classic "68% rule".
When the bounds are symmetric around use known empirical rules (68–95–99.7). For other bounds, compute then use a table or calculator.
1. Which distribution is used for defective rods in a fixed batch?
2. If lengths are uniform [49.5,50.5], probability that 49.8≤X≤50.2?
3. Z-score for X=195, μ=200, σ=5?
4. Probability within 1σ in normal distribution?
5. Why uniform probability is ratio of sub-interval to total?
Merci pour vos commentaires !
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Can you explain the difference between discrete and continuous distributions again?
How do I know which distribution to use for a specific problem?
Can you give more real-world examples for each distribution?
Awesome!
Completion rate improved to 1.89
Understanding Probability Distributions
Glissez pour afficher le menu
This mini-lesson explains three fundamental probability distributions - binomial, uniform, and normal - through clear definitions, many worked examples, and step-by-step instructions aimed at beginners working in a manufacturing/quality-control context. You will learn how to compute probabilities, interpret results, and combine these tools to make practical decisions on the production line.
Probability distributions
A probability distribution tells you how likely different outcomes are. On the one hand, in discrete outcomes (like "how many defective rods"), we list probabilities for each possible count. For continuous measurements (like length or weight), on the other hand, we describe density across a range. General discrete vs continuous formulas:
P(X∈A)=x∈A∑p(x)(discrete)P(a≤X≤b)=∫abf(x)dx(continious)Example (quick check): If a process guarantees all lengths between 49.5 and 50.5 cm are equally likely, the probability a rod lies in a 0.4 cm sub-range will be the sub-range width divided by 1.0 cm (this is the uniform idea — below we show it in detail).
Binomial distribution
The binomial models the number of successes (e.g., defective rods) in a fixed number of independent trials (e.g., 100 rods), when each trial has the same probability of success.
Formula:
P(X=k)=(nk)pk(1−p)n−kExample:
In a batch of n=100 rods where each rod independently has probability p=0.02 of being defective, what is the probability of exactly k=3 defective rods?
Step 1 — compute the combination:
(1003)=3!97!100!=161700Step 2 — compute powers:
p3=0.023=0.000008(1−p)97=0.9897≈0.1409059532Step 3 — multiply all parts:
P(X=3)=161700×0.000008×0.1409059532≈0.182275941What this means: About 18.23% chance of exactly 3 defective rods in a 100-rod sample. If you see 3 defects, that is a plausible outcome.
If your computed probability seems larger than 1 or negative, re-check the combination or the power calculations. Also compare a binomial pmf value to the cdf if you want "at most" or "at least" answers.
Uniform distribution
The uniform distribution models a continuous measurement where every value within a range [a,b] is equally likely (e.g., a tolerance range for rod length).
Formula:
f(x)=b−a1,a≤x≤bProbability between two points:
P(l≤X≤u)=b−au−lExample:
Parameters: a=49.5, b=50.5. What is the probability a rod length X lies between 49.8 and 50.2? Compute range width:
b−a=50.5−49.5=1.0Compute sub-interval:
u−l=50.2−49.8=0.4Probability:
P(49.8≤X≤50.2)=1.00.4=0.4Interpretation: There is a 40% chance a randomly measured rod will fall in this tighter tolerance.
Make sure a<b and your sub-range is inside [a,b]; otherwise you must clip the endpoints and treat outside ranges with probability 0.
Normal distribution
The normal distribution describes continuous measurements that cluster around a mean μ with spread measured by standard deviation σ. Many measurement errors and natural variations follow this bell-shaped curve.
Formula:
f(x)=σ2π1e−2σ2(x−μ)2Standardize with z-score:
z=σx−μProbability between two values uses the cumulative distribution (CDF) or symmetry for standard cases:
P(a≤X≤b)=Φ(σb−μ)−Φ(σa−μ)Here Φ is the standard normal CDF.
Example A:
Parameters: μ=200, σ=5, find P(195≤X≤205).
Z-scores:
z1=5195−200=−1z2=5205−200=1Using the symmetry of the normal distribution, the probability between −1 and +1 standard deviation is the well-known:
P(195≤X≤205)≈0.6826894921Interpretation: About 68.27% of rod weights fall within ±1 standard deviation of the mean — a classic "68% rule".
When the bounds are symmetric around use known empirical rules (68–95–99.7). For other bounds, compute then use a table or calculator.
1. Which distribution is used for defective rods in a fixed batch?
2. If lengths are uniform [49.5,50.5], probability that 49.8≤X≤50.2?
3. Z-score for X=195, μ=200, σ=5?
4. Probability within 1σ in normal distribution?
5. Why uniform probability is ratio of sub-interval to total?
Merci pour vos commentaires !