Average Calculator
Enter any list of numbers to find the average, sum, minimum, and maximum instantly.
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
How to Use This Calculator
Steps to Calculate the Average
Example Calculations
Example 1 - Student Test Scores
Scores: 72, 85, 91, 68, 79, 88, 95, 74
Example 2 - Monthly Sales Figures
Sales (₹ thousands): 145, 182, 167, 203, 198, 221, 189, 176, 154, 231, 210, 188
Frequently Asked Questions
🔗 Related Calculators
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 mean, median, and mode?
Mean is the arithmetic average (sum divided by count). Median is the middle value when numbers are sorted - useful when data has extreme outliers. Mode is the most frequently occurring value. Example: for the set {1, 2, 2, 3, 100}: mean = 21.6, median = 2, mode = 2. The median better represents the typical value here because the outlier (100) skews the mean significantly.
When should I use median instead of mean?
Use median instead of mean when your dataset has outliers or is skewed. Salary data is a classic example: a few very high earners raise the mean salary well above what most people earn, making the median a more accurate representation of the typical salary. Similarly, home prices, income data, and response times are often better described by the median.
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.