Module 5: Continuous Probability Distributions
Supporting Lectures:
EGN3443 Module 5 - Continuous Probability Distributions
1. Probability Density Functions (PDFs)
Definition
A Probability Density Function (PDF) is a function that describes the likelihood of a continuous random variable taking on a specific value. Unlike discrete probability functions, PDFs represent the probability density over a range of values.
Key Characteristics
- The total area under the PDF curve always equals 1
- PDFs can have values greater than 1
- Probability is calculated by finding the area under the curve
Example Calculation
For a PDF f(x), the probability of X being between a and b is calculated by: P(a ≤ X ≤ b) = ∫[a to b] f(x) dx
2. Cumulative Distribution Functions (CDFs)
Definition
A Cumulative Distribution Function (CDF) represents the probability that a random variable X is less than or equal to a specific value x.
Mathematical Representation
F(x) = P(X ≤ x) = ∫[-∞ to x] f(t) dt
Relationship with PDF
The PDF is the derivative of the CDF: f(x) = dF(x)/dx
Example Calculation
If F(x) is the CDF of a distribution, then:
- F(x) gives the probability of X being less than or equal to x
- 1 - F(x) gives the probability of X being greater than x
3. Normal Distribution
Definition
The Normal (Gaussian) Distribution is a symmetric probability distribution characterized by its mean (μ) and standard deviation (σ).
Probability Density Function
f(x) = (1 / (σ * √(2π))) * e^(-(x-μ)²/(2σ²))
Standard Normal Distribution
- Mean (μ) = 0
- Standard Deviation (σ) = 1
- Z-score: Z = (X - μ) / σ
Example Calculation
Probability of a value within one standard deviation: P(μ - σ ≤ X ≤ μ + σ) ≈ 0.6827 or 68.27%
Applications
- Quality control
- Natural phenomena modeling
- Error analysis in measurements
- Financial modeling
4. Exponential and Weibull Distributions
Exponential Distribution
Definition
Models time between events in a Poisson process, typically used for failure times and waiting times.
Probability Density Function
f(x) = λ * e^(-λx), where λ is the rate parameter Mean = 1/λ Variance = 1/λ²
Applications
- Reliability engineering
- Queuing theory
- Survival analysis
Weibull Distribution
Definition
Flexible distribution used to model failure times and lifetime data.
Probability Density Function
f(x) = (k/λ) * (x/λ)^(k-1) * e^(-(x/λ)^k)
- k: shape parameter
- λ: scale parameter
Applications
- Reliability engineering
- Lifetime prediction
- Failure analysis
5. Lognormal Distribution in Engineering Applications
Definition
A distribution where the logarithm of the variable is normally distributed.
Probability Density Function
f(x) = (1 / (x * σ * √(2π))) * e^(-(ln(x) - μ)²/(2σ²))
- x > 0
- μ: mean of underlying normal distribution
- σ: standard deviation of underlying normal distribution
Applications
- Failure analysis
- Particle size distributions
- Financial modeling
- Risk assessment in engineering
Example Calculation
Calculating reliability of components with inherent variability in performance.
Recommended Study Approach
- Understand the theoretical foundations
- Practice calculating probabilities
- Use statistical software (R, Python, MATLAB) for visualization
- Solve real-world engineering problems
- Review case studies in various engineering domains
Recommended Resources
- Textbook: "Probability and Statistics for Engineers" by Miller & Freund
- Online Course: Coursera's "Statistics with Python Specialization"
- Software: R, Python (SciPy), MATLAB