Average Calculator
Calculate arithmetic, geometric, harmonic, quadratic means with statistical analysis
Enter numbers and click 'Calculate Averages' to start
Arithmetic Mean
Most common average, suitable for most scenarios. Simple calculation but sensitive to extreme values.
Geometric Mean
Suitable for handling ratios, growth rates. Requires all positive numbers, less sensitive to extreme values.
Harmonic Mean
Suitable for handling rates, speeds. Requires all positive numbers, usually smaller than arithmetic mean.
Quadratic Mean
Also called root mean square, emphasizes larger values. Commonly used in physics and engineering.
Your Privacy is Protected
All calculations run locally in your browser. We do not store or transmit your data.
What is an Average?
An average — more precisely the arithmetic mean — is a single number that represents the center of a set of values. You find it by adding every value together and dividing by how many there are. For {4, 8, 15, 16, 23, 42}, the average is (4 + 8 + 15 + 16 + 23 + 42) ÷ 6 = 18.
Averages are useful because they summarize many numbers into one. Instead of listing 30 students’ test scores, you report the class average. But averages also hide information: two very different groups can share the same average. That is why statisticians pair the mean with a measure of spread like the standard deviation.
The arithmetic mean is the most common average, but it is not the only one. Geometric, harmonic, and quadratic means each suit different kinds of data — choosing the wrong one can give a misleading answer.
Four Types of Average
Arithmetic mean = (x₁ + x₂ + … + xⁿ) ÷ n
Geometric mean = (x₁ × x₂ × … × xⁿ)^(1/n)
Harmonic mean = n ÷ (1/x₁ + 1/x₂ + … + 1/xⁿ)
Quadratic mean = √((x₁² + x₂² + … + xⁿ²) ÷ n)
Which one to use?
- Arithmetic — everyday quantities that add up: scores, prices, temperatures. Default choice.
- Geometric — growth rates and ratios that multiply: investment returns, population growth, compound interest.
- Harmonic — rates and speeds over a fixed distance: average speed on a round trip. Resists being skewed by small values.
- Quadratic (RMS) — values that fluctuate around zero, like AC voltage or measurement error.
Example: for {2, 8}, arithmetic mean = 5, geometric mean = 4, harmonic mean = 3.2, quadratic mean = 5.83. Same two numbers, four different “averages” — each meaningful in its own context.
Common Use Cases
Grade point average (GPA) — A weighted arithmetic mean where each course is weighted by its credit hours, summarizing overall academic performance in one number.
Salaries and income — Average (mean) salary is quick to compute but pulled up by very high earners; median salary is usually a more representative figure and is why labor reports quote it instead.
Investment annualized return — The geometric mean of yearly returns gives the true compound annual growth rate (CAGR), while the arithmetic mean overstates it.
Sports and analytics — Batting averages, points per game, and rolling performance trends are all averages used to compare players across different sample sizes.
Frequently Asked Questions
What is the difference between mean, median, and mode?
The mean (average) is the sum of all values divided by the count. The median is the middle value when the numbers are sorted — half are above it, half below. The mode is the most frequently occurring value. For the set {2, 3, 3, 7, 10}, the mean is 5, the median is 3, and the mode is 3. The mean is sensitive to extreme values; the median is not, which is why income statistics often report the median instead of the mean.
How do I calculate a weighted average?
Multiply each value by its weight, sum those products, then divide by the total of the weights. For example, a course graded as homework (30% weight, score 80) and exam (70% weight, score 90): (80 × 0.30) + (90 × 0.70) = 24 + 63 = 87. Grade point averages (GPAs) are weighted averages where credit hours are the weights.
When should I use the geometric mean instead of the arithmetic mean?
Use the geometric mean for rates of change, growth, and ratios — anything that compounds multiplicatively. For investment returns of +10%, +20%, and −5%, the geometric mean gives the true average annual return, while the arithmetic mean would overstate it. Use the arithmetic mean for additive quantities like temperatures, test scores, or daily sales.
How should I handle outliers when averaging?
A single extreme value can distort the mean. Three common strategies: (1) report the median, which naturally ignores extremes; (2) use a trimmed mean that drops the highest and lowest values before averaging; or (3) investigate whether the outlier is a real data point or a measurement error before deciding to keep or remove it. Never silently drop data without a reason.
What's the difference between a population mean and a sample mean?
A population mean is the true average of every member of an entire group (μ). A sample mean is the average of a smaller subset drawn from that population (x̄). They use the same formula — divide the sum by the count — but the sample mean is an estimate that carries uncertainty. Statistics like confidence intervals exist to describe how close a sample mean likely is to the true population mean.