Median Calculator: find the middle value fast (with steps)
Paste a list of numbers, click Calculate, and you’ll get the median plus a clean, step-by-step breakdown (sorted list, middle position, and the “two-middle average” case).
This free Median Calculator finds the median (the middle value) of a list of numbers. Paste your data, hit Calculate, and you’ll see the median plus a clear explanation of each step — including the even-count case where you average the two middle values. No signup. Runs instantly in your browser.
Paste a list of numbers, click Calculate, and you’ll get the median plus a clean, step-by-step breakdown (sorted list, middle position, and the “two-middle average” case).
The median is the middle value of a dataset after you sort it. It’s one of the three classic measures of central tendency (mean, median, mode). The key idea: instead of adding everything up (like the mean), the median uses position.
Sort your dataset from smallest to largest. If your data is: 8, 1, 4, 10, 6, sorting gives: 1, 4, 6, 8, 10.
Dataset: 1, 4, 6, 8, 10 has n = 5. The middle position is (5 + 1) / 2 = 3. The 3rd value is 6. So the median is 6.
Dataset: 2, 4, 7, 9 has n = 4. The two middle positions are n/2 = 2 and n/2 + 1 = 3. The two middle values are 4 and 7. Median = (4 + 7) / 2 = 5.5.
Suppose you track delivery time (minutes): 12, 13, 11, 12, 200. The mean is pulled up by 200, but the median is the middle after sorting: 11, 12, 12, 13, 200 → median = 12. That’s why median is common for skewed data (income, prices, response times).
Scores: 72, 90, 83, 83, 95, 68, 77
Sorted: 68, 72, 77, 83, 83, 90, 95
n = 7 (odd) → middle position (7+1)/2 = 4 → median = 83.
Expenses: 1200, 950, 1100, 2400, 1000, 1050
Sorted: 950, 1000, 1050, 1100, 1200, 2400
n = 6 (even) → middle values = 1050 and 1100 → median = (1050+1100)/2 = 1075.
Numbers: -4, -1, 2, 9, 0
Sorted: -4, -1, 0, 2, 9 → median = 0.
Numbers: 5, 5, 5, 10, 10
Sorted: 5, 5, 5, 10, 10 → median = 5.
Duplicates are normal and should usually be kept.
This tool follows the exact textbook definition of median:
The “Steps” box shows the sorted list, the middle index(es), and the final median formula so you can screenshot it for homework or reports.
The median is the middle number after sorting your list. Half the values are below it and half are above it (or as close as possible when there’s an even count).
Median isn’t heavily affected by extreme values. If one number is wildly large or small, the mean shifts a lot, but the median often stays close to the typical values.
Sort the list, take the two middle values, and average them. Example: 2, 4, 7, 9 → (4 + 7) / 2 = 5.5.
Yes. If there’s an even number of values, the average of the two middle values can be a decimal.
Usually no. Duplicates represent repeated measurements and belong in the dataset. Remove duplicates only if you’re intentionally working with unique values.
This calculator tries to extract valid numbers from your input. If it can’t find at least one number, it will ask you to fix the input.
Yes—conceptually. The median is the value that splits the dataset so that about 50% of observations are below and 50% are above.
For most everyday lists (dozens to thousands of values), yes. Extremely large datasets are better handled in spreadsheets or statistical software, but the median logic is identical.
MaximCalculator provides simple, user-friendly tools. Always treat results as entertainment and double-check any important numbers elsewhere.