Average Calculator

Enter any list of numbers to find the average, sum, minimum, and maximum instantly.

∑ Average Calculator
Enter numbers (comma or space separated)

What is an Average?

The average, also called the arithmetic mean, is one of the most fundamental concepts in mathematics and statistics. It represents a central or typical value in a collection of numbers. You calculate it by adding all values together and dividing by the count of values.

The average is deeply embedded in everyday life. Teachers calculate average scores for grading. Businesses track average sales per day, average order value, and average customer lifetime value. Scientists use averages to summarise experimental results. Even weather forecasts are built on averages - the “average temperature in July” represents decades of readings condensed into a single representative number.

One of the most important things to understand about the average is that it is sensitive to outliers - extreme values that lie far from the rest of the data. If nine people earn ₹30,000 per month and one person earns ₹3,00,000 per month, the average monthly income is (9 × 30,000 + 3,00,000) / 10 = ₹57,000 - far above what nine out of ten people actually earn. In such cases, the median (middle value) is more representative.

The sum is the total of all values added together. The count is how many numbers are in the dataset. The minimum and maximum are the smallest and largest values. The range is the difference between the maximum and minimum, giving a measure of how spread out the data is. This calculator shows all of these at once so you get a complete picture of your dataset in one click.

Understanding averages also requires knowing what they cannot tell you. Two datasets can have identical averages but very different distributions. Ten people all earning ₹50,000 and one person earning ₹20,000 plus one earning ₹80,000 both yield an average near ₹50,000, but the spread is completely different. That is why standard deviation and range complement the average.

Formula

Average = Sum of all values ÷ Count of values
Average (x̄) = (x₁ + x₂ + x₃ + ... + xₙ) / n
x₁, x₂, ..., xₙ = individual values in the dataset
n = total count of values
Range = Maximum − Minimum

How to Use This Calculator

Steps to Calculate the Average

1
Type or paste your numbers into the text area. Separate them with commas or spaces - both work.
2
Click Calculate to instantly see the average, sum, count, minimum, maximum, and range.
3
Modify your data and recalculate anytime. The calculator handles decimals and negative numbers.

Example Calculations

Example 1 - Student Test Scores

Scores: 72, 85, 91, 68, 79, 88, 95, 74

1
Sum: 72 + 85 + 91 + 68 + 79 + 88 + 95 + 74 = 652
2
Count: 8 students
3
Average: 652 ÷ 8 = 81.5
Class average = 81.5 | Min: 68 | Max: 95 | Range: 27
Try this example →

Example 2 - Monthly Sales Figures

Sales (₹ thousands): 145, 182, 167, 203, 198, 221, 189, 176, 154, 231, 210, 188

1
Sum: 145+182+167+203+198+221+189+176+154+231+210+188 = 2,264
2
Count: 12 months
3
Average: 2,264 ÷ 12 = 188.67 thousand
Average monthly sales = ₹1,88,667 | Range: ₹86,000
Try this example →

Frequently Asked Questions

What is the difference between average, mean, and arithmetic mean?+
In everyday usage, average and mean both refer to the arithmetic mean - the sum of all values divided by the count. Strictly speaking, 'mean' can refer to arithmetic, geometric, or harmonic mean, but unless otherwise specified, mean and average both mean the arithmetic mean.
How do I calculate the average of a set of numbers?+
Add all the numbers together, then divide the total by how many numbers there are. For example, the average of 10, 20, 30, 40 is (10+20+30+40)/4 = 100/4 = 25.
Does the average always lie within the range of my data?+
Yes, the arithmetic mean always falls between the minimum and maximum values of your dataset. It can never be higher than the maximum or lower than the minimum value in the set.
What is the difference between mean and median?+
The mean is the arithmetic average (sum divided by count). The median is the middle value when data is sorted. For skewed data sets - like income distributions - the median is often a better representative because a few extreme values can pull the mean far from the typical value.
When should I use the average vs the median?+
Use the mean (average) when data is roughly symmetric and has no extreme outliers. Use the median when the data is skewed or contains outliers. For example, average income is misleading because billionaires skew it high - median income better represents the typical person.
What is the difference between population mean and sample mean?+
The population mean (μ) is the true average of all values in the entire group you are studying. The sample mean (x̄) is the average of a subset drawn from that population. In practice, you almost always work with sample means because measuring an entire population is impractical. Sample means are used to estimate the population mean, with the precision of the estimate improving as sample size increases.
What is a running average and when is it useful?+
A running average (also called a moving average) recalculates the mean each time a new value is added, without needing to store all previous values. Formula: new_average = old_average + (new_value − old_average) / count. Running averages are useful in real-time monitoring (stock prices, sensor readings, website traffic) where data arrives continuously and you need an up-to-date average without reprocessing the entire dataset.
How do I calculate a weighted average?+
A weighted average assigns different importance (weights) to different values. Formula: weighted average = sum of (value x weight) divided by sum of weights. Example: if a student scores 70 on a test worth 40% and 80 on a project worth 60%: weighted average = (70 x 0.4 + 80 x 0.6) / (0.4 + 0.6) = (28 + 48) / 1 = 76. This differs from the simple average of (70 + 80) / 2 = 75.