Statistics Calculator

Calculate descriptive statistics

Separate numbers with commas, spaces, tabs, or newlines.

Descriptive Statistics

Count (N)
Minimum (Min)
Maximum (Max)
Range
Sum
Mean (Arithmetic)
Median
Mode
Geometric Mean
First Quartile (Q1)
Third Quartile (Q3)
Interquartile Range (IQR)
Outliers
Sample Std. Deviation (s)
Sample Variance (s²)
Population Std. Deviation (σ)
Population Variance (σ²)
Std. Error of Mean (SEM)

Pasting a column of lab readings or survey scores into a spreadsheet formula chain gets old fast—one wrong cell reference and your whole summary table is off. This page runs every common descriptive stat in one pass so you can sanity-check homework, QC batches, or a client export without rebuilding the math by hand.

How to Use This Statistics Calculator

  • Paste your numbers. Enter values in the textarea separated by commas, spaces, tabs, or line breaks—the same formats you get when copying from a spreadsheet app.
  • Press Calculate. The results table fills with count, min, max, range, sum, mean, median, mode, geometric mean, quartiles, IQR, outliers, both variance types, both standard deviations, and standard error of the mean.
  • Read sample vs. population columns side by side. Sample stats use N − 1 in the denominator (Bessel's correction); population stats divide by N. Pick the column that matches whether your list is the whole population or just a sample.
  • Cross-check focused tools. For step-by-step deviation math only, open the Standard Deviation Calculator. For mean, median, mode, and range with written steps, try the Mean Median Mode Range Calculator.

Statistics Formulas and Practical Applications

Think of descriptive stats like a dashboard for a dataset: center measures tell you where values cluster, spread measures tell you how noisy the list is, and quartiles expose skew that a plain average hides.

Central tendency

Mean = Sum / N

The arithmetic mean is the everyday average. The median is the middle value after sorting—better when a few extreme sales or defect counts would pull the mean sideways. Mode lists every value tied for highest frequency; when all values appear equally often, the tool reports no unique mode.

Geometric Mean = (x₁ × x₂ × … × x_N)^(1/N)

Growth rates and percentage changes compound multiplicatively, so the geometric mean fits better than the arithmetic average there. It requires strictly positive inputs; zero or negative values show as undefined.

Spread and quartiles

Range = Max − Min

IQR = Q3 − Q1

Q1 and Q3 are the 25th and 75th percentiles of the sorted list. IQR captures the middle half of the data—handy when you care about typical performance rather than the full min-to-max swing.

Variance and standard deviation

Sample Variance s² = Σ(x − x̄)² / (N − 1)

Population Variance σ² = Σ(x − x̄)² / N

Standard Deviation = √Variance

In our testing, a small QC batch with mean 10 and sample SD 2 tells you most readings sit within a few units of 10—not a formal tolerance band, but a quick spread check before you open a control chart.

Standard error and outliers

SEM = s / √N

SEM shrinks as sample size grows—it is the link between sample SD and confidence intervals. For outliers, values below Q1 − 1.5 × IQR or above Q3 + 1.5 × IQR are flagged—the same box-plot fence rule many analysts use on site.

Frequently Asked Questions

When should I use sample vs. population standard deviation?

Use s when your pasted list is a sample from a larger group. Use σ only when the values represent the entire population. When in doubt, sample SD is the safer default for field data.

How does this calculator flag outliers?

The tool sorts your data, computes Q1 and Q3, builds IQR, then lists any value outside the 1.5×IQR fences. If none qualify, the outliers row reads "None."

Why is the geometric mean undefined for some datasets?

Multiplying by zero zeroes the product, and negative values break real-number roots. Paste only positive numbers if you need a geometric mean—for mixed-sign growth, convert to multipliers first.

What does standard error of the mean (SEM) tell me?

SEM estimates sampling variability of the mean. Pair it with the Confidence Interval Calculator when you need an explicit interval around your sample average.

Can I paste data from a spreadsheet?

Yes—copy a column and paste directly. Tabs and newlines from spreadsheet exports parse cleanly. Browse all math calculators for related stats tools.

Disclaimer. RapidRatio is informational only. It is not financial, tax, business, or professional advice. Verify results and assumptions with qualified professionals before making decisions.