Calculating and Interpreting Probabilities

1 Calculating and Interpreting Probabilities

Probability calculation is the bridge between a theoretical distribution and a real-world answer. Once you have identified the correct distribution for a random variable — uniform, normal, or exponential — you need a reliable, systematic method to extract numerical probabilities from that distribution. This topic develops those methods in depth, working through the formulas, the logic behind them, the tools required, and the pitfalls that most commonly derail learners. Every technique is illustrated with fully worked examples so that the process becomes automatic rather than mysterious.

It is worth pausing first to recall what a probability calculation actually means geometrically. For any continuous distribution, the probability that a random variable X falls in an interval is the area under the probability density curve over that interval. The total area under the entire curve is always exactly 1, representing certainty. Every formula below is simply a precise way of measuring a slice of that total area.

Calculating Probabilities for the Uniform Distribution

The continuous uniform distribution is the simplest of all continuous distributions. It models a situation in which every value between a lower boundary a and an upper boundary b is equally likely. Because the density is constant — a flat, horizontal line — the probability of landing in any sub-interval is determined purely by how wide that sub-interval is relative to the total width.

The probability density function is:

f(x) = 1 / (b - a)   for a ≤ x ≤ b, and 0 elsewhere.

Because the height of the density is constant at 1/(b − a), the area over any sub-interval [c, d] within [a, b] is simply height × width:

P(c ≤ X ≤ d) = (d - c) / (b - a)

This formula contains only arithmetic, so no statistical table or software is needed. The steps are: (1) clearly identify a and b from the problem, (2) identify the interval of interest c and d, and (3) substitute. Identifying a and b correctly is critical — if you confuse which endpoint is which, every subsequent calculation will be wrong.

Notice that the formula confirms the total probability is 1: setting c = a and d = b gives (b − a)/(b − a) = 1. The distribution is therefore mathematically valid.

Worked example: A bus arrives at a stop at a uniformly distributed time between 8:00 am and 8:20 am. What is the probability that the bus arrives between 8:05 am and 8:12 am?

Here a = 0 minutes and b = 20 minutes (measuring time past 8:00 am). The interval of interest runs from c = 5 to d = 12.

P(5 ≤ X ≤ 12) = (12 - 5) / (20 - 0) = 7 / 20 = 0.35

There is a 35% chance the bus arrives in that seven-minute window. Notice the proportionality: a 7-minute window out of a 20-minute total always gives 35%, regardless of where in the 20-minute range the window is placed — that is the hallmark of the uniform distribution.

Because probabilities are directly proportional to interval width, comparing two uniform probabilities is straightforward: a wider interval always has a higher probability. This also means that for a single point, P(X = c) = (c − c)/(b − a) = 0, confirming that continuous distributions assign zero probability to exact values.

Calculating Probabilities for the Normal Distribution

The normal distribution is the most widely used distribution in statistics. Its bell-shaped, symmetric curve is fully determined by two parameters: the mean μ (centre of the bell) and the standard deviation σ (spread of the bell). Because every combination of μ and σ would require its own table, the strategy is to convert any normal variable to the standard normal distribution, which has μ = 0 and σ = 1. This conversion is done with the Z-score formula:

Z = (X - μ) / σ

The Z-score tells you how many standard deviations a value is above (positive Z) or below (negative Z) the mean. After converting, you look up the resulting Z-value in a standard normal table to obtain a cumulative probability.

Reading a Z-table. Standard Z-tables give P(Z ≤ z) — the probability of the standard normal variable being at most z. The table is arranged so that the row gives the Z-score to one decimal place and the column gives the second decimal place. For example, to find P(Z ≤ 1.47), locate row 1.4 and column 0.07. Always read both headings; misreading a column shifts the answer to the wrong hundredths digit.

Three situations arise repeatedly:

Symmetry shortcut. Because the standard normal curve is symmetric about 0:

P(Z ≤ -z) = 1 - P(Z ≤ z)

This means you never need negative-Z table entries if your table only lists positive Z values — simply reflect. For instance, P(Z ≤ −1.25) = 1 − P(Z ≤ 1.25).

Worked example 1 — lower tail: The weights of adult males are normally distributed with μ = 80 kg and σ = 10 kg. What is the probability that a randomly chosen man weighs less than 95 kg?

Z = (95 - 80) / 10 = 1.50
P(X < 95) = P(Z ≤ 1.50) = 0.9332   (from Z-table)

There is a 93.32% chance a randomly selected man weighs under 95 kg.

Worked example 2 — upper tail: Using the same distribution, what is the probability of a man weighing more than 92 kg?

Z = (92 - 80) / 10 = 1.20
P(X > 92) = 1 - P(Z ≤ 1.20) = 1 - 0.8849 = 0.1151

There is an 11.51% chance a randomly selected man weighs over 92 kg.

Worked example 3 — between two values: What proportion of men weigh between 70 kg and 90 kg?

z₁ = (70 - 80) / 10 = -1.00
z₂ = (90 - 80) / 10 =  1.00

P(Z ≤ 1.00) = 0.8413
P(Z ≤ -1.00) = 1 - 0.8413 = 0.1587

P(70 ≤ X ≤ 90) = 0.8413 - 0.1587 = 0.6826

Approximately 68.26% of men weigh between 70 and 90 kg — this is the familiar "68% within one standard deviation" result from the empirical rule, now confirmed algebraically.

Calculating Probabilities for the Exponential Distribution

The exponential distribution models the time (or distance, or cost) until the next occurrence of an event in a Poisson process — for example, the time until the next customer arrives, the time until a machine fails, or the lifetime of a light bulb. Its key parameter is the rate λ (lambda), which equals the average number of events per unit of time.

The relationship between the rate λ and the mean μ is:

λ = 1 / μ    equivalently    μ = 1 / λ

This reciprocal relationship is the source of the most common error with this distribution, so always determine explicitly from the problem whether you are given the rate or the mean before substituting.

The cumulative distribution function (CDF) — which directly gives probabilities — is:

P(X ≤ x) = 1 - e^(-λx)    for x ≥ 0

For an upper-tail probability:

P(X > x) = e^(-λx)

For an interval probability:

P(a ≤ X ≤ b) = P(X ≤ b) - P(X ≤ a)
             = [1 - e^(-λb)] - [1 - e^(-λa)]
             = e^(-λa) - e^(-λb)

No statistical table is required. A scientific calculator with an e^x key (or any spreadsheet using =EXP()) is sufficient.

Worked example 1 — lower tail: Customers arrive at a service desk at an average rate of 4 per hour. The time between arrivals follows an exponential distribution. What is the probability that the next customer arrives within 10 minutes?

The mean interarrival time is μ = 1/4 hour = 15 minutes. Working in minutes: λ = 1/15 per minute. Find P(X ≤ 10):

P(X ≤ 10) = 1 - e^(-(1/15)(10))
           = 1 - e^(-10/15)
           = 1 - e^(-0.6667)
           = 1 - 0.5134
           = 0.4866

There is approximately a 48.7% chance the next customer arrives within 10 minutes.

Worked example 2 — interval: Using the same distribution, what is the probability the next customer arrives between 5 and 20 minutes from now?

P(5 ≤ X ≤ 20) = e^(-λ·5) - e^(-λ·20)
              = e^(-(1/15)·5) - e^(-(1/15)·20)
              = e^(-0.3333) - e^(-1.3333)
              = 0.7165 - 0.2636
              = 0.4529

There is roughly a 45.3% probability of the next arrival falling in that 15-minute window.

Interpreting Calculated Probabilities in Context

Obtaining a decimal from a formula is only half the job. The other half is translating that decimal into a meaningful statement that actually answers the question posed. Several principles guide good interpretation.

Interpretation example: A manager asks: "Is there more than a 50% chance that a machine failure occurs within the first 100 hours?" If the exponential calculation gives P(X ≤ 100) = 0.632, the answer is: "Yes — there is approximately a 63.2% probability of failure within the first 100 hours, meaning failure before 100 hours is more likely than not." That sentence is far more useful than simply reporting "0.6321."

Using Tables and Technology to Compute Probabilities

Each distribution has its own preferred computation method, and using the wrong tool wastes time or introduces errors.

For the uniform distribution, the formula (d − c)/(b − a) is entirely algebraic. No table and no software are required — a basic calculator or even pencil and paper suffice.

For the normal distribution, the standard Z-table remains the most widely taught tool. The table below summarises how to read it:

Situation Steps with Z-table Steps with technology (e.g., Excel / Python)
P(X ≤ x) Compute Z; look up P(Z ≤ z) directly. =NORM.DIST(x, μ, σ, TRUE) or scipy.stats.norm.cdf(x, μ, σ)
P(X > x) Compute Z; find 1 − P(Z ≤ z). =1 - NORM.DIST(x, μ, σ, TRUE)
P(a ≤ X ≤ b) Compute z₁ and z₂; find P(Z ≤ z₂) − P(Z ≤ z₁). =NORM.DIST(b,μ,σ,TRUE) - NORM.DIST(a,μ,σ,TRUE)
P(Z ≤ negative z) Use symmetry: P(Z ≤ −z) = 1 − P(Z ≤ z). Function handles negative z automatically.

When using technology, always verify that the function is returning a cumulative (left-tail) probability unless another mode is explicitly selected. In Excel, the fourth argument of NORM.DIST must be TRUE for cumulative; FALSE returns the density (height of the curve), which is not a probability.

For the exponential distribution, the CDF formula is self-contained. In Excel, =EXPON.DIST(x, λ, TRUE) returns P(X ≤ x) directly; in Python, scipy.stats.expon.cdf(x, scale=1/λ) does the same (note that SciPy uses the scale parameter 1/λ rather than λ itself — another source of potential error).

A critical habit when using technology is cross-checking against a known benchmark. For the normal distribution, the 68–95–99.7 empirical rule provides instant sanity checks: P(μ − σ ≤ X ≤ μ + σ) ≈ 0.6827, P(μ − 2σ ≤ X ≤ μ + 2σ) ≈ 0.9545, and P(μ − 3σ ≤ X ≤ μ + 3σ) ≈ 0.9973. If your technology output for a one-standard-deviation interval gives 0.38 instead of 0.68, you have almost certainly made a parameter entry error.

Common Errors and How to Avoid Them

Even students who understand the theory make consistent procedural mistakes. The table below catalogues the most frequent errors alongside their remedies:

Error Distribution Example of the mistake How to avoid it
Confusing λ (rate) with μ (mean) Exponential Problem states "mean = 5"; student uses λ = 5 in the formula instead of λ = 1/5 = 0.2. Write "λ = ?" and "μ = ?" as a checklist before substituting. Compute λ = 1/μ explicitly.
Dividing by variance instead of standard deviation in Z-score Normal σ = 4, so σ² = 16; student calculates Z = (X − μ)/16 instead of Z = (X − μ)/4. Always square-root the variance to get σ before computing Z. Label σ and σ² separately in working.
Subtracting Z-table values in the wrong order Normal P(1 ≤ Z ≤ 2) computed as P(Z ≤ 1) − P(Z ≤ 2), yielding a negative number. Always subtract the smaller Z's cumulative probability from the larger: P(Z ≤ z₂) − P(Z ≤ z₁) with z₂ > z₁. A negative answer always signals a reversal.
Applying a discrete formula to a continuous variable (or vice versa) All Using the binomial formula for a variable described as "time until an event" (exponential) or "normally distributed weight." Identify whether the variable is discrete (countable outcomes) or continuous (measured on a scale) before selecting a distribution. Continuous time → exponential or normal, not binomial.
Forgetting to use the complement for upper-tail probabilities Normal, Exponential Asked for P(X > 15); student looks up P(X ≤ 15) and reports that value directly. Underline the inequality direction in the question. If it is "greater than," apply 1 − (table value) as an automatic step.
Using a and b boundaries outside [a, b] for the uniform Uniform X ~ U(2, 8); student calculates P(X ≤ 10), not realising x = 10 lies outside the distribution's support. Any value ≥ b has probability 1; any value ≤ a has probability 0. Clip c and d to [a, b] before applying the formula.

One overarching strategy prevents many of these errors: write down every known quantity before touching a formula. State the distribution, identify all parameters by name, restate the target probability in mathematical notation, and only then substitute. This disciplined approach forces you to confront ambiguities in the problem rather than rushing past them into calculation.

NotesWorked examples cover all three distributions (uniform, normal, exponential) across lower-tail, upper-tail, and between-value scenarios. Tables included for Z-table reading guidance and common errors. The empirical rule (68-95-99.7) is incorporated as a cross-check heuristic for technology use.