You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
A probability distribution describes how the values of a random variable are distributed. It tells you which outcomes are likely, which are unlikely, and how probabilities are spread across all possible values.
A random variable assigns a numerical value to each outcome of a random experiment.
| Type | Description | Examples |
|---|---|---|
| Discrete | Takes a countable number of values | Number of heads in 10 coin flips, dice rolls |
| Continuous | Takes any value within an interval | Height, weight, temperature |
For a discrete random variable X, the PMF gives the probability of each specific value:
P(X = x) = f(x)
Requirements:
E(X) = μ = Σ xᵢ × P(X = xᵢ)
Var(X) = σ² = Σ (xᵢ − μ)² × P(X = xᵢ)
A single trial with two outcomes (success/failure):
P(X = 1) = p (success)
P(X = 0) = 1 − p (failure)
Mean = p, Variance = p(1 − p)
The number of successes in n independent Bernoulli trials:
P(X = k) = C(n, k) × pᵏ × (1 − p)ⁿ⁻ᵏ
Example: Probability of getting exactly 3 heads in 5 coin flips (p = 0.5):
P(X = 3) = C(5,3) × 0.5³ × 0.5² = 10 × 0.125 × 0.25 = 0.3125
Models the number of events occurring in a fixed interval of time or space, given a known average rate λ:
P(X = k) = (e⁻λ × λᵏ) / k!
Example: A call centre receives an average of 4 calls per minute. What is the probability of receiving exactly 6 calls in a minute?
P(X = 6) = (e⁻⁴ × 4⁶) / 6! ≈ 0.1042
For a continuous random variable, the PDF f(x) describes the relative likelihood of values. Probabilities are found by integrating:
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.