Average and mean: reading mean, median, mode and range
I use this when a list of numbers needs a quick summary. Grades, times, prices, or daily steps. The mean is the sum divided by how many values you have. The median is the middle value after sorting. The mode is the value that appears most often. Range is max minus min. They tell different stories. A few large values pull the mean up while the median stays steady, which is why I check both before I decide what is typical.
TL;DR
- Paste numbers separated by commas or new lines
- Formula: Mean = Sum / n | Median = middle after sort | Mode = most frequent |
- Example 1: Grades 78, 82, 85, 91, 95
How it works
Paste numbers separated by commas or new lines. The tool parses the list, sorts a copy for median, counts frequencies for mode, and keeps the original order for the sum and mean. It ignores empty entries and shows how many valid numbers it found. If you paste 12, 15, 15, 20, the mean is 15.5, the median is 15, the mode is 15, range is 8. That agreement tells you the center is stable. When they disagree, look at the distribution.
The math
Mean is sum divided by count. Median is the middle value after sorting, or the average of the two middle values when the count is even. Mode is the most frequent value. Range is maximum minus minimum. Standard deviation, when shown, measures spread around the mean. For a small set, I prefer range and median because one outlier can move the mean more than you expect.
Sum all values, divide by how many there are for the mean. Sort for the median. Scan frequencies for the mode. Subtract min from max for the range.
Examples
Example 1: Grades 78, 82, 85, 91, 95
- Sum 78+82+85+91+95 = 431
- Count n = 5
- Mean 431 ÷ 5 = 86.2
- Sorted list 78, 82, 85, 91, 95 → median 85 (middle)
- No repeat → no mode, range 95-78 = 17
Example 2: Times 12, 15, 15, 19, 30
- Sum 91, n = 5, mean 18.2
- Sorted 12, 15, 15, 19, 30 → median 15
- Mode 15 (appears twice)
- Mean is higher than median because 30 pulls it up, median shows the typical value better here
When to use it
✦ Checking a grade average
Students paste their scores to see the mean. If one low score drags the mean down, the median shows the middle performance.
✦ Prices or daily counts
A shop that tracks daily sales uses mean for the weekly average and range to see how much days vary.
✦ Quality check before plotting
Before drawing a chart, a quick check of mean, median and mode tells you if the data is skewed and whether you need to handle outliers.
⚠ Common mistakes
- Trusting the mean alone: one large value can make the mean look high. Always compare with the median when the range is wide.
- Leaving text in the list: words or currency signs are ignored, but a stray comma can create an empty entry. Clean the list so the count is right.
FAQ (6)
What is the difference between mean and median?
Mean is the arithmetic average. Median is the middle after sorting. When data is skewed, median often describes the center better.
When does mode matter?
When you care about the most common value, such as the most frequent score or the most common delivery time.
Do you save the numbers I type for area, volume or conversions?
Not at all. Every conversion — kg to lbs, area, fraction math — runs locally. No form data is posted anywhere. You can convert 1,500 kg to lbs on a shared computer and walk away knowing nothing was logged.
Will it work without internet in class?
Yes — that's why students like it. Load once on Wi-Fi, then fraction, base-converter or standard deviation work offline in class or in an exam hall without signal. It's just math in JavaScript, no server round-trip.
How accurate are the math results?
We use standard definitions (e.g. 1 kg = 2.20462 lbs, BIPM SI) and double-check edge cases via automated tests. For homework or site measurements it's more than enough, but for certified engineering or lab work, cross-check with the primary standard.
Can I share a calculation with a classmate?
Tap 'Share Link' — it puts the inputs in the URL. Your classmate opens it and sees the same 3/4 → 0.75 → 75% breakdown instantly, without retyping.