Median Calculator — Middle Value of a Number List
CalculatorA median calculator finds the middle value after sorting a list of numbers.
What is it
The median is the center value in sorted data. If the list has an even number of values, the median is the average of the two middle values.
median = middle value of sorted data
How to use
- 1Enter the number list.
- 2Press calculate.
- 3Check the median after sorting.
Reference
| Input | Median |
|---|---|
| 10,20,30,40,50 | 30 |
| 1,2,9,10 | 5.5 |
Sources & standards
- MDN Web Docs: Client-side web APIs - MDN Web Docs
FAQ
How is median different from average?
Average adds all values and divides by count, while median is the middle value of sorted data.
Is median calculator input sent to a server?
No. This tool runs in your browser and does not send input to a server.