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

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

Web References: https://en.wikipedia.org/wiki/Probability_density_function 

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:

Web References: https://en.wikipedia.org/wiki/Cumulative_distribution_function 

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

Example Calculation

Probability of a value within one standard deviation: P(μ - σ ≤ X ≤ μ + σ) ≈ 0.6827 or 68.27%

Applications

Web References: https://en.wikipedia.org/wiki/Normal_distribution 

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

Web References: https://en.wikipedia.org/wiki/Exponential_distribution 

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)

Applications

Web References: https://en.wikipedia.org/wiki/Weibull_distribution 

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σ²))

Applications

Example Calculation

Calculating reliability of components with inherent variability in performance.

Web References: https://en.wikipedia.org/wiki/Log-normal_distribution 

Recommended Study Approach

  1. Understand the theoretical foundations
  2. Practice calculating probabilities
  3. Use statistical software (R, Python, MATLAB) for visualization
  4. Solve real-world engineering problems
  5. Review case studies in various engineering domains

Recommended Resources