Probability Mass Functions and Distribution Properties

1

Probability Mass Functions and Distribution Properties

When we study random phenomena with countable, distinct outcomes — rolling a die, counting the number of customer complaints received in a day, or recording how many heads appear in five coin flips — we need a precise mathematical tool to describe how probability is spread across those outcomes. That tool is the probability mass function, commonly abbreviated as the PMF. The PMF is the foundational building block for all work with discrete probability distributions, and understanding it deeply is essential before moving on to expected values, variances, or any named distribution such as the binomial or Poisson.

A probability mass function is a function that assigns a probability to each possible value of a discrete random variable. If X is a discrete random variable, the PMF is written as P(X = x), which is read as "the probability that the random variable X takes on the specific value x." The lowercase x represents a particular outcome — a number in the domain of X — while the uppercase X represents the variable itself, which is uncertain before the outcome is observed. This distinction between X (the random variable) and x (a realized value) is subtle but important in formal probability work.

The PMF is defined only for discrete random variables. A discrete random variable is one whose possible values form a countable set — meaning the outcomes can be listed one by one, even if the list is infinite. Examples include the number of cars passing through an intersection per hour, the outcome of a single roll of a six-sided die (1, 2, 3, 4, 5, or 6), or the number of defective items in a batch of products. In contrast, continuous random variables — such as the exact height of a person or the time until a machine fails — take values across an uncountable interval, and they require a different tool called a probability density function (PDF). The PMF cannot be applied to continuous variables, because for any single point in a continuous distribution, the probability is exactly zero.

The PMF fully characterizes the behavior of a discrete random variable. This means that once you know the PMF, you know everything there is to know about the probabilistic behavior of X: which outcomes are possible, which are impossible, which are likely, and which are rare. Every summary measure — the mean, variance, and more — can be derived from the PMF alone.

Every valid PMF must satisfy two fundamental mathematical properties. These are not suggestions or conventions — they are strict requirements that any function must meet before it can qualify as a legitimate probability mass function.

The first requirement is the non-negativity property. For every possible value x in the domain of X, the PMF must satisfy:

P(X = x) ≥ 0   for all x

In plain terms, no outcome can be assigned a negative probability. This makes intuitive sense: probability represents a proportion of likelihood, and proportions cannot be negative. A probability of exactly zero is perfectly acceptable — it simply means that outcome is impossible and will never occur. For example, if X is the result of rolling a standard six-sided die, then P(X = 7) = 0 because getting a seven is impossible on that die. However, assigning any outcome a probability such as −0.1 or −0.5 immediately disqualifies the function as a PMF, because it violates this foundational rule.

The second requirement is the summation property: the probabilities assigned to all possible outcomes must sum to exactly one. Mathematically:

Σ P(X = x) = 1,   summed over all possible values x

This property reflects the certainty that some outcome must occur whenever the random experiment is performed. The complete list of possible outcomes forms the entire sample space, and the total probability assigned to the sample space must always equal 1. If the probabilities sum to less than 1, then some portion of the sample space has been left unaccounted for — as if some outcomes were forgotten or ignored. If the probabilities sum to more than 1, the distribution is over-assigning probability in a way that is mathematically inconsistent. Either failure invalidates the distribution entirely.

To make these properties concrete, consider a simple example. Suppose a student randomly selects one answer on a multiple-choice question with four options labeled 1, 2, 3, and 4, each equally likely. The random variable X represents the answer chosen. The PMF is:

x (Outcome) P(X = x)
1 0.25
2 0.25
3 0.25
4 0.25

Check the non-negativity property: every probability is 0.25, which is greater than zero. ✓
Check the summation property: 0.25 + 0.25 + 0.25 + 0.25 = 1.00. ✓
Both conditions are satisfied, so this is a valid PMF.

Now consider constructing a discrete probability distribution from scratch. The process follows a clear sequence of steps. First, identify and list every distinct, mutually exclusive outcome the random variable X can take. Mutually exclusive means that only one outcome can occur at a time — rolling a 3 and rolling a 5 on the same single die roll cannot both happen simultaneously. Second, assign a probability to each outcome. This assignment might come from theoretical reasoning (symmetry arguments, like a fair die), from empirical data (observed frequencies from a large number of trials), or from a known mathematical formula (such as the formula for a binomial distribution). Third — and critically — verify both the non-negativity and summation conditions before treating the distribution as valid.

Consider a more applied construction example. A small business tracks the number of customer service calls X it receives in the first hour of business each day. Based on historical records, the observed frequencies over 200 days are:

Number of Calls (x) Days Observed Estimated P(X = x)
0 40 40/200 = 0.20
1 60 60/200 = 0.30
2 70 70/200 = 0.35
3 30 30/200 = 0.15

The probabilities are all non-negative: 0.20, 0.30, 0.35, 0.15 are all ≥ 0. ✓
The sum is: 0.20 + 0.30 + 0.35 + 0.15 = 1.00. ✓
This empirically estimated PMF is valid and can be used for further analysis.

A probability distribution table — like the ones above — is one of the clearest ways to present a PMF. It displays each possible value alongside its corresponding probability in an organized, readable format. Another common representation is a probability histogram, a bar chart where each bar is centered at a value of x and its height equals P(X = x). The histogram provides an immediate visual sense of the distribution's shape — whether it is symmetric, skewed left or right, or concentrated around a single peak.

Validating a probability distribution is a step that must never be skipped, whether the distribution was constructed from theory or estimated from data. The validation process consists of two checks applied in sequence. First, inspect every individual probability and confirm that none is negative. Second, add all probabilities together and confirm the total is exactly 1 (or sufficiently close to 1 when working with rounded decimals — for example, if rounding produces a sum of 0.999 or 1.001, one should check whether the discrepancy is due to rounding and not a structural error). If either check fails, the distribution is invalid and must be corrected before any calculations — such as finding the mean or computing cumulative probabilities — are attempted. Using an invalid distribution in further calculations produces meaningless results.

It is worth noting that validation applies equally to all types of discrete probability distributions, whether they are simple empirical distributions built from data, theoretical distributions derived from assumed conditions, or named distributions like the binomial, geometric, or Poisson. Every one of them must respect the two core properties.

To illustrate a failed validation, suppose someone proposes the following PMF for a random variable Y:

y P(Y = y)
1 0.50
2 −0.10
3 0.60

Non-negativity check: P(Y = 2) = −0.10, which is negative. ✗ This distribution is invalid immediately.
Summation check: 0.50 + (−0.10) + 0.60 = 1.00. Although the sum happens to equal 1, the negative probability is still a disqualifying violation. Both conditions must hold; passing one does not excuse failing the other.

Now consider a second failing case:

y P(Y = y)
1 0.40
2 0.35
3 0.30

Non-negativity check: all values are positive. ✓
Summation check: 0.40 + 0.35 + 0.30 = 1.05 ≠ 1. ✗ This distribution is invalid because the probabilities exceed 1.

Finally, interpreting PMF values in context is what connects abstract mathematics to real-world meaning. The numerical value of P(X = x) directly expresses how likely outcome x is. A PMF value close to 1 means the outcome is nearly certain; a PMF value close to 0 means the outcome is very rare. By scanning the PMF table or histogram, one can quickly identify the most probable outcome (the value with the highest probability, sometimes called the mode of the distribution) and the least probable outcome (the value with the lowest non-zero probability).

In the customer service call example above, the most likely number of calls in the first hour is 2 calls, with P(X = 2) = 0.35. Receiving zero calls is the least likely scenario among the observed outcomes, at P(X = 0) = 0.20. A manager could use this PMF to make decisions: for instance, scheduling at least one staff member capable of handling calls during the first hour is clearly justified, since the probability of receiving at least one call is P(X ≥ 1) = 0.30 + 0.35 + 0.15 = 0.80, meaning there is an 80% chance at least one call will arrive.

This kind of contextual reasoning — using PMF values to compare outcomes, assess risk, and support decisions — is precisely why mastering the PMF is so important. Every more advanced topic in discrete probability, from computing expectations to modeling real-world processes with named distributions, rests on the solid foundation of understanding what the PMF represents and what conditions it must satisfy.

NotesInstructors may wish to emphasize the distinction between uppercase X (the random variable) and lowercase x (a specific realized value) early, as students frequently conflate them. The failed-validation examples are particularly useful for assessment items. A brief mention that continuous distributions use a PDF rather than a PMF helps learners situate this concept within the broader landscape of probability theory.