Instantly calculate the mathematical average (mean), median, mode, range, standard deviation, and variance for a list of numbers. Input raw data separated by commas or spaces.
Instant mean, median, mode breakdown
Example formats: `10, 15, 20` or `10 15 20` or separate lines.
Data values are processed locally in your browser. No data leaves your machine.
The Mean represents the arithmetic average and is ideal for symmetrical datasets without extreme points (outliers). For example, compiling average class exam scores or daily temperatures.
The Median, which represents the exact middle boundary of sorted data, is far more robust when a dataset is heavily skewed by outliers. A classic example is household income: a single billionaire in a small town shifts the average mean income upward by thousands of dollars, whereas the median remains stable, representing the true center of the population.
Average values only tell part of the story. Standard Deviation measures data dispersion — how spread out individual numbers are from the mean.
Suppose we have a sample of 5 exam grades: 85, 92, 78, 90, 88. Let's calculate the statistics step-by-step:
| Metric | Formula | Best Used For | Robustness to Outliers |
|---|---|---|---|
| Mean (Arithmetic Average) | Σx ÷ N | General metrics, uniform sets without outliers. | Low (Highly affected) |
| Median | Middle value of sorted data | Skewed distributions (real estate, incomes). | High (Not affected) |
| Mode | Most frequent value | Categorical surveys, retail inventory counts. | High (Not affected) |
| Geometric Mean | ⁿ√(x₁ × x₂ × ... × xₙ) | Compound interest, financial metrics, growth rates. | Medium |