What the midrange is
The midrange is a measure of central tendency that marks the exact midpoint between the two most extreme observations in a dataset. It is defined by a single formula:
Midrange = (maximum + minimum) / 2
Because it depends only on the largest and smallest values, the midrange ignores everything in between. For the set {12, 7, 22, 4, 18, 9, 15}, the minimum is 4 and the maximum is 22, so the midrange is (22 + 4) / 2 = 13. Notice that this is different from the mean of that same set (which is about 12.43) and the median (12) — the three measures agree only for perfectly symmetric data.
How to compute it by hand
- Step 1. Scan the dataset for the smallest value (the minimum).
- Step 2. Scan for the largest value (the maximum).
- Step 3. Add the minimum and maximum together.
- Step 4. Divide that sum by 2. The result is the midrange.
You do not need to sort the whole list or count how many values there are — only the two extremes matter. This is what makes the midrange the fastest measure of center to calculate.
Why the midrange is used
The midrange is common in meteorology, where the "average daily temperature" reported by many weather services is literally the midrange of the day's high and low: (high + low) / 2. It also appears as a quick eyeball estimate of center, as the midpoint of a uniform distribution, and in setting the center of an interval or axis when you only know the endpoints. Because it is trivial to compute, it is often taught alongside the mean, median, and mode as a fourth simple measure of central tendency.
Midrange compared with mean, median, and mode
- Mean: the sum of all values divided by the count. Uses every data point.
- Median: the middle value once the data is sorted. Robust to outliers.
- Mode: the most frequently occurring value.
- Midrange: the average of only the maximum and minimum. Fastest to compute, but the least robust — a single extreme value can swing it dramatically.