Module 4: Probability Distributions - Discrete

Supporting Lectures:
EGN3443 Module 4 - Discrete Probability Distributions


1. Random Variables and Probability Mass Functions (PMF)

Definition

A random variable is a function that assigns a numerical value to each possible outcome of a random experiment. For discrete random variables, a Probability Mass Function (PMF) specifies the probability of each possible value the random variable can take.

Key Characteristics

Example

Consider a die roll (X):

Web Reference:

2. Expected Value and Variance

Expected Value (Mean)

The expected value represents the average outcome of a random variable over many trials.

Formula: E(X) = Σ [x * P(X = x)]

Variance

Variance measures the spread of a probability distribution.

Formula: Var(X) = E[(X - E(X))²] = Σ [(x - E(X))² * P(X = x)]

Calculation Example

Die Roll Scenario:

Web Reference:

3. Bernoulli and Binomial Distributions

Bernoulli Distribution

A discrete probability distribution of a random variable which takes the value 1 with probability p and the value 0 with probability (1-p).

Parameters:

PMF: P(X = k) = p^k * (1-p)^(1-k), where k ∈ {0, 1}

The sum of all the probabilities of all the  possible outcomes will 1.0
A stem plot is a good method of visualizing the PMF.

Binomial Distribution

Represents the number of successes in n independent Bernoulli trials.

Formula: P(X = k) = C(n,k) * p^k * (1-p)^(n-k)

Example Calculation

Coin Flips:

Web Referencehttps://en.wikipedia.org/wiki/Binomial_distribution 

4. Poisson Distribution

Definition

Models the number of events occurring in a fixed interval of time or space, given a constant mean rate.

Parameters:

PMF: P(X = k) = (e^-λ * λ^k) / k!

Applications

Example Calculation

Call Center Scenario:

Web Reference: https://en.wikipedia.org/wiki/Poisson_distribution 

5. Hypergeometric Distribution

Definition

Probability distribution that describes the probability of k successes in n draws, without replacement, from a finite population of size N that contains exactly K successes.

Parameters:

PMF: P(X = k) = [C(K,k) * C(N-K, n-k)] / C(N, n)

Example

Quality Control:

Web Reference:  https://en.wikipedia.org/wiki/Hypergeometric_distribution 

Recommended Study Resources

  1. OpenStax Probability and Statistics
  2. MIT OpenCourseWare - Probability
  3. EdX - Probability Courses

Practice Suggestions

Common Pitfalls to Avoid