How this instrument works
The midrange is the simplest measure of central tendency there is: find the largest value in your data, find the smallest, and average those two. midrange = (max + min) ⁄ 2. It ignores every value in between entirely — which sounds like a flaw, and often is one, but is also exactly why it takes almost no effort to compute by hand from a quick glance at a data set.
That simplicity comes at a real cost. Because midrange depends on only the two most extreme values, it is the single most outlier-sensitive statistic in common use — far more than the mean, and vastly more than the median. Change one extreme value in a data set of a thousand points and the mean barely shifts, the median often does not move at all, but the midrange can jump substantially, since it was built from that one point in the first place.
Despite that fragility, midrange has genuine, narrow uses. Meteorologists have historically used it to summarise a day's temperature swing from the daily high and low alone. It shows up as a fast sanity check or rough estimate when a full calculation is not worth the effort, and in some engineering and quality-control contexts it doubles as a quick range-midpoint reference alongside the range itself. Treat it as a fast estimate, not a robust summary — for that, the mean or median remains the safer default.
- Paste or type your numbers into the Data set field — commas, spaces, or new lines all work as separators.
- The instrument finds the maximum and minimum values in your data automatically — you do not need to sort anything yourself.
- Read the result in Midrange — it is simply the maximum and minimum averaged together, halfway between your data's two extremes.
- Remember that midrange reacts strongly to a single extreme value — if one outlier is suspect, check whether it belongs in the calculation before trusting the result.
- The instrument needs at least 2 values, since a midrange from a single point would just return that point.
Worked example — the eight quiz scores
Paste the data set {2, 4, 4, 4, 5, 5, 7, 9} — n = 8 — into Data set. The instrument scans for the extremes: the maximum is 9, the minimum is 2. Midrange reads 5.5, computed as (9 + 2) ⁄ 2.
Notice that 5.5 sits close to this data set's mean of exactly 5 and its median of 4.5 — for this particular, fairly symmetric set of scores, all three measures of centre roughly agree. That will not hold for every data set: change the 9 to a 40 and the mean and median barely move, but the midrange jumps to (40 + 2) ⁄ 2 = 21, dragged there entirely by the single new extreme value.
Questions
How is midrange different from the mean or median?
The mean uses every value in the data set; the median uses the middle value (or two middle values) once the data is sorted; the midrange uses only the maximum and minimum, ignoring everything in between. That makes midrange by far the fastest to compute by hand, but also the most sensitive to a single unusual extreme value.
Why is midrange so sensitive to outliers?
Because it is built from nothing but the two most extreme points in the data set. If either the maximum or minimum is an unusual, one-off value rather than a representative one, the midrange moves entirely with it, since there is no other data contributing to pull the answer back. The mean is diluted by every other point; the median often ignores extreme values altogether. Midrange has no such protection.
When is midrange actually a good choice?
When you specifically want a quick estimate of the middle of a range — historically used for summarising a day's temperature from its high and low, or as a fast, rough sanity check when a full mean or median calculation is not worth the effort. It is a convenience tool for symmetric, outlier-light data, not a robust general-purpose measure of centre.
Can midrange ever equal the mean or median exactly?
Yes — for data that is close to symmetric with no extreme outliers, midrange, mean, and median often land close together or even match exactly, as in a simple evenly spaced sequence. They diverge as the data becomes more skewed or as extreme values pull the maximum or minimum away from where the bulk of the data actually sits.
Does the size of my data set change how midrange behaves?
Not the formula itself — midrange only ever looks at 2 of your values, however many you enter. What changes is how representative those 2 extremes are likely to be: in a small data set the max and min carry a lot of weight relative to the whole picture, while in a very large data set they are more likely to be genuine rare extremes rather than typical values, making midrange even less representative of the bulk of the data.