Quick answer: An average calculator finds the mean of any set of numbers β€” add them all and divide by the count. The average of 4, 8, and 10 is 7.33. It also shows the sum and count. Free and instant for any list of values.
Math πŸ‡ΊπŸ‡Έ USAπŸ‡¬πŸ‡§ UK Live Results5 Average Types
Calculate

Average Calculator

Calculate arithmetic mean, weighted average, geometric mean, harmonic mean, and moving average from any dataset. Shows all averages simultaneously with deviation analysis.

Average Inputs

Live
Enter comma-separated numbers in the dataset field. For weighted average, also enter comma-separated weights (same count as values). For moving average, set the window size.
Must match number of data points
Number of periods to average over

Your Average Results

β€”
Arithmetic Mean
β€”
Enter a dataset above to calculate
Values with Mean Line
Moving Average
Value Deviations from Mean
#ValueDeviation|Deviation|

Average Calculator Guide

Guide

Average Calculator – Arithmetic Mean, Weighted Average, Geometric & Harmonic Mean

The word "average" is one of the most commonly used β€” and most commonly misunderstood β€” terms in everyday mathematics. In casual conversation, "average" usually means the arithmetic mean (add up all values, divide by the count). But statisticians use at least five different types of average, each appropriate for different situations. This free average calculator computes all five simultaneously: arithmetic mean, weighted average, geometric mean, harmonic mean, and moving average.

The Arithmetic Mean

The arithmetic mean is the sum of all values divided by the number of values:

Mean = (x₁ + xβ‚‚ + … + xβ‚™) / n

It is the most widely used average. The arithmetic mean of {85, 92, 78, 96, 88} is (85+92+78+96+88)/5 = 439/5 = 87.8.

The arithmetic mean is sensitive to outliers. If Bill Gates walks into a room of 10 people with average income $50,000, the arithmetic mean of the 11 people shoots up dramatically β€” even though 10 of the 11 are still earning $50,000. This is why income statistics in the US and UK typically report median income rather than mean income.

The Weighted Average

A weighted average gives different values different levels of importance (weight). The formula is:

Weighted Mean = Ξ£(xα΅’ Γ— wα΅’) / Ξ£wα΅’

The most common real-world application is calculating a grade point average (GPA) or overall exam score. If your final exam counts for 50% of your grade and coursework for 50%, a weighted average gives the correct final score.

Example: Course grades with weights

  • Exam (50% weight): 88
  • Coursework (30% weight): 75
  • Quiz (20% weight): 95
  • Weighted average = (88Γ—50 + 75Γ—30 + 95Γ—20) / (50+30+20) = (4400+2250+1900)/100 = 85.5

In the UK, A-Level grades are often computed as weighted combinations of component papers. In the US, GPA calculations typically weight courses by their credit hours.

The Geometric Mean

The geometric mean is the nth root of the product of n values:

Geometric Mean = (x₁ Γ— xβ‚‚ Γ— … Γ— xβ‚™)^(1/n)

The geometric mean is ideal for averaging rates, ratios, and growth factors. It is the correct average for investment returns over multiple periods.

Example: Investment returns over 3 years

  • Year 1: +20% (factor 1.20)
  • Year 2: βˆ’10% (factor 0.90)
  • Year 3: +15% (factor 1.15)
  • Geometric mean = (1.20 Γ— 0.90 Γ— 1.15)^(1/3) = (1.242)^(1/3) β‰ˆ 1.0751
  • This means an average annual return of approximately 7.51%

If you used the arithmetic mean instead: (20 + βˆ’10 + 15)/3 = 8.33% β€” which overstates the actual return because it ignores the compounding effect of losses.

The Harmonic Mean

The harmonic mean is the reciprocal of the arithmetic mean of reciprocals:

Harmonic Mean = n / (1/x₁ + 1/xβ‚‚ + … + 1/xβ‚™)

The harmonic mean is appropriate when averaging rates where the denominator is constant. The classic example is speed: if you drive 60 mph for the first half of a journey and 40 mph for the second half, your average speed is not (60+40)/2 = 50 mph.

The correct average speed (harmonic mean) = 2 / (1/60 + 1/40) = 2 / (0.0167 + 0.025) = 2 / 0.0417 = 48 mph.

The harmonic mean is also used in finance to calculate average price-earnings ratios across portfolios, and in physics for equivalent resistances in parallel circuits.

The Moving Average

A moving average (or rolling average) smooths a time series by averaging over a sliding window of the most recent n data points. As new data arrives, the oldest point drops out and the newest enters.

A 3-period moving average of {10, 20, 30, 40, 50} produces: {β€”, β€”, 20, 30, 40}. The first two points have no moving average (insufficient data).

Moving averages are used extensively in stock price analysis (the 50-day and 200-day moving averages are standard technical indicators), in weather forecasting, in sales trend analysis, and in economics (GDP smoothing).

Average vs Median β€” The Income Example

In the UK, the Office for National Statistics reports both mean and median household income. For 2024, the median UK household income was approximately Β£35,000 while the mean was considerably higher due to the effect of very high earners. The median is the "middle" value β€” 50% of households earn more, 50% earn less β€” and is much harder to distort with extreme outliers.

In the US, the Census Bureau similarly reports both. US median household income in 2023 was approximately $80,000, while the mean was higher. This difference is explained by income inequality: a small number of very high earners pull the mean up while the median is unaffected.

Which average is most "honest" for income? Neither β€” they tell different stories. The median tells you what a typical household earns. The mean tells you how national income per household would be divided if it were equally shared. Both are valid and important in different contexts.

Average in UK and US Schools

In the UK, "average" at Key Stage 3 and GCSE typically means arithmetic mean, introduced through simple datasets. A-Level Statistics extends this to standard deviation, variance, the normal distribution, and measures of central tendency. The term "average" may also refer informally to median or mode in everyday language.

In the US, mean, median, and mode are introduced in middle school (grades 6–7) under the Common Core Standards. Advanced Placement Statistics (AP Statistics) covers sampling distributions, weighted averages, and regression β€” all of which build on the concept of the mean.

FAQ – Average Calculator

What is the difference between mean, median, and mode?

Mean is the arithmetic average (sum divided by count). Median is the middle value when data is sorted. Mode is the most frequent value. For income data, median is usually most representative because extreme high earners pull the mean up.

When should I use weighted average instead of arithmetic mean?

Use weighted average when different values have different levels of importance. Examples: grade calculations (exams weighted more than homework), portfolio returns (positions weighted by investment size), opinion polls (responses weighted by demographic representation).

Why is geometric mean better for investment returns?

Investment returns compound: losing 10% then gaining 10% leaves you 1% below where you started (0.90 Γ— 1.10 = 0.99). The arithmetic mean would suggest 0% overall change. The geometric mean correctly accounts for compounding and gives the true average growth rate.

When is harmonic mean used?

Use harmonic mean when averaging rates where the denominator is constant β€” particularly speeds, rates, and price-to-earnings ratios. For speed: if you travel equal distances at different speeds, the correct average speed is the harmonic mean of those speeds.

What does a moving average tell you?

A moving average smooths out short-term fluctuations to reveal longer-term trends. In stock markets, crossing the 50-day MA above the 200-day MA is a bullish signal ("golden cross"). In economics, moving averages remove seasonal noise from monthly data.

Can the geometric mean be calculated with negative numbers?

No β€” the geometric mean requires all positive numbers (you cannot take the root of a negative product with real numbers). For investment returns, use growth factors (1 + return rate) which are always positive, then subtract 1 from the result.

What is the relationship between arithmetic, geometric, and harmonic means?

For any set of positive numbers: HM ≀ GM ≀ AM (harmonic mean ≀ geometric mean ≀ arithmetic mean). Equality holds only when all values are identical. This is known as the AM-GM-HM inequality.

How is standard deviation related to the mean?

Standard deviation measures the average distance of each data point from the mean. A small standard deviation means values cluster closely around the mean. A large one means they are spread out. Together, mean and standard deviation describe the centre and spread of a distribution.

⚠️ Disclaimer

Important

Results are for educational purposes. All calculations use standard mathematical formulas. Geometric and harmonic means require positive numbers only.

Mean
β€”