A uniform distribution describes a situation where every allowed outcome is equally likely. It is one of the simplest probability models, but it is also one of the most useful because it gives a clear baseline for fairness and randomness. Dice, cards, spinners, random number generators, and measurement errors are often modeled with uniform distributions when no outcome is favored.
Its graph is flat because probability is spread evenly across the possible outcomes.
There are two main types: discrete uniform distributions and continuous uniform distributions. A discrete uniform distribution has a countable list of outcomes, such as the numbers 1 through 6 on a fair die. A continuous uniform distribution covers every value in an interval, such as a spinner landing anywhere from 0 to 360 degrees.
In both cases, the mean is at the center of the possible values, while the variance measures how spread out the outcomes are around that center.
Understanding Statistics: The Uniform Distribution
A uniform model begins with a clear boundary. For a discrete situation, list every possible result that the model permits. For a continuous situation, state the lowest and highest values.
Values outside those limits have no chance under the model. This makes the model easy to use, but only when its boundaries match the real situation.
A random whole number chosen from one through ten fits a discrete model. The exact waiting time for a bus usually does not fit a uniform model unless there is a reason to believe every time in a stated interval is equally plausible.
Continuous probability needs special care. There are infinitely many possible values between two endpoints, so one exact value has probability zero. This does not mean that the value cannot occur.
It means probability is assigned to ranges, not single points. A result between twenty and thirty on an interval from zero to one hundred has probability one tenth, because that range takes up one tenth of the total width. The height of a continuous uniform graph is called density.
It can be greater than one when the interval is narrow. What must equal one is the total area under the graph.
Uniform distributions are often used to check whether a process is fair. Suppose a game claims that each prize code appears equally often. After many trials, the counts should be close, though not perfectly equal.
Random variation creates short term imbalance. A few extra sixes in a set of die rolls do not prove that the die is biased. Evidence of bias becomes stronger when the difference remains large after a substantial number of rolls.
Students meet this idea in random number generators, online quizzes that shuffle answers, lotteries, surveys, and computer simulations. In each case, the intended design may be uniform, while the observed data will still vary by chance.
A useful learning habit is to separate the model from reality. A spinner may have equal sized sectors but friction, a loose pointer, or an uneven surface can favor some sectors. A number generator can be uniform in theory but a poorly designed program may show patterns.
Measurement uncertainty is not automatically uniform either. A ruler reading might be modeled as equally likely within a small rounding interval, but repeated human measurements can cluster near preferred marks.
Check whether outcomes truly have equal chances, whether the range is correct, and whether the variable is discrete or continuous. These choices matter more than memorising a formula, because a correct calculation built on the wrong model gives a misleading result.
Key Facts
- Discrete uniform probability: P(X = x) = 1/n for each of n equally likely outcomes.
- Continuous uniform density on [a, b]: f(x) = 1/(b - a) for a <= x <= b.
- Continuous uniform probability over an interval [c, d]: P(c <= X <= d) = (d - c)/(b - a).
- Discrete uniform mean for values 1 to n: μ = (n + 1)/2.
- Continuous uniform mean on [a, b]: μ = (a + b)/2.
- Continuous uniform variance on [a, b]: σ^2 = (b - a)^2/12.
Vocabulary
- Uniform distribution
- A probability distribution in which all allowed outcomes are equally likely.
- Discrete uniform distribution
- A uniform distribution with a finite or countable set of separate possible outcomes.
- Continuous uniform distribution
- A uniform distribution in which any value in a continuous interval can occur.
- Probability density
- A function that describes how probability is spread over a continuous range of values.
- Variance
- A measure of how far values in a distribution tend to spread away from the mean.
Common Mistakes to Avoid
- Treating density as probability is wrong because a continuous value has probability 0 at any single exact point. Probability comes from area over an interval.
- Forgetting that the total probability must be 1 is wrong because all probabilities across the full sample space must add or integrate to 1.
- Using the continuous variance formula for a discrete die is wrong because σ^2 = (b - a)^2/12 applies to a continuous interval, not separate outcomes like 1, 2, 3, 4, 5, and 6.
- Assuming every flat-looking graph is uniform is wrong because the distribution must be flat over its whole allowed range and zero outside that range.
Practice Questions
- 1 A fair 8-sided die is numbered 1 through 8. What is P(X = 5), and what is the mean value of one roll?
- 2 A spinner is uniformly distributed from 0 degrees to 360 degrees. What is the probability that it lands between 90 degrees and 150 degrees?
- 3 A computer generates a random decimal uniformly between 0 and 1. Explain why the probability of getting exactly 0.5 is not the same as the probability of getting a value between 0.4 and 0.6.