Dataset
Enter data numbers
Enter at least one number.
Math calculator
Paste numbers separated by spaces, commas, tabs, or new lines. Get mean, median, mode, sum, count, standard deviation, range, RMS, geometric mean, and a quick distribution view.
Dataset
Enter at least one number.
Average = Sum / Count = (1 + 2 + 5 + 2 + 6 + 6) / 6 = 22 / 6 = 3.6667.
Enter one value and one weight per line. Example: grades with credit hours, prices with quantities, or scores with importance weights.
| Statistic | Formula | Meaning |
|---|---|---|
| Average (mean) | sum / count | Add all values and divide by how many values there are. |
| Median | middle sorted value | Sort values and take the middle, or average the two middle values. |
| Mode | most frequent value | The value or values that appear most often. |
| Population SD | sqrt(sum((x - mean)^2) / n) | Spread when the data is the full population. |
| Sample SD | sqrt(sum((x - mean)^2) / (n - 1)) | Spread when the data is a sample. |
| Weighted average | sum(value x weight) / sum(weight) | Mean where some values count more than others. |
The average of 1, 2, and 5 is (1 + 2 + 5) / 3 = 2.6667. For 1, 2, 5, 2, 6, 6, the sum is 22 and the count is 6, so the average is 3.6667.
You can use spaces, commas, semicolons, tabs, or line breaks. The calculator extracts valid numbers automatically.
Sample standard deviation divides by n - 1 to estimate spread from a sample. Population standard deviation divides by n when the dataset is the complete population.
No. Geometric mean is only shown when every value is greater than zero.