Skip to content
📊

Average Calculator

Calculate mean, median, mode, and range from any list of numbers. Paste a dataset and get all statistics instantly.

Share this calculator:WhatsAppTelegramX
Add this calculator to your site:
Written & reviewed by K L Hemanth KumarLast updated July 2026Formulas verified against RBI, the Income Tax Department, AMFI, and EPFO

About the Average Calculator

Mean, median, and mode are three different ways to describe the center of a dataset, and they tell very different stories. For a dataset of 10 employee salaries where 9 earn ₹5L and 1 earns ₹50L, the mean is ₹9.5L (misleadingly high), but the median is ₹5L (representative of most employees). Choosing the right measure of central tendency is essential in business analysis, academic research, and everyday data interpretation.

Measures of Central Tendency

Mean = Sum of all values / Count · Median = middle value when sorted (average of two middle values if even count) · Mode = most frequently occurring value

Range = Maximum - Minimum · Standard deviation measures spread around the mean · For skewed data (income, property prices): median is more representative than mean

Worked Example

Monthly sales data: 120, 145, 132, 98, 210, 132, 165, 178, 145, 132

Dataset:120, 145, 132, 98, 210, 132, 165, 178, 145, 132
Count:10 values

Mean = 145.7 · Median = 138.5 (avg of 5th & 6th sorted values) · Mode = 132 (appears 3 times) · Range = 112

Tips & Insights

  • 1

    For income, property prices, and other right-skewed data, median is always more meaningful than mean. India's per-capita income figure is often cited but rarely experienced because a small number of very high earners lift the mean far above what most households earn.

  • 2

    Multiple modes are possible - a bimodal distribution has two peaks, suggesting two distinct groups in the data. When you see two modes in a dataset, investigate whether you are actually looking at two mixed populations rather than one.

  • 3

    Range alone is a poor spread measure - a dataset of [1, 50, 50, 50, 100, 100] and [1, 25, 50, 75, 100] have the same range but very different distributions. Use standard deviation alongside range for a complete picture.

  • 4

    Weighted average matters when items carry different importance. For a final grade where assignments count 40% and exams 60%, weight each score proportionally rather than averaging raw marks equally.

  • 5

    Geometric mean is the correct average for returns and growth rates. An investment up 50% then down 33% has arithmetic mean 8.5% but geometric mean 0% - accurately reflecting no net gain over the two periods.

  • 6

    Trimmed mean (removing the top and bottom 5-10% of values before averaging) is useful for removing outlier distortion in competitive scoring, salary surveys, and quality assessments where a few extreme values would otherwise skew the result.

  • 7

    Running average (cumulative mean) is useful for tracking trends. If your monthly sales are 100, 120, 110, 140, the running average at month 4 is (100+120+110+140)/4 = 117.5 - compare this month by month to see whether the trend is improving or flat.

Why this matters for you

Statistical literacy is increasingly important as data surrounds every decision. A headline saying 'average salary ₹12L' can be misleading if a handful of high earners inflate the mean while most employees earn ₹5-6L. Understanding which average to trust - and when - is a critical thinking skill for consumers, managers, and citizens alike.

In business, the wrong choice of average can lead to systematically wrong decisions. A retail manager averaging daily sales with the arithmetic mean during a festival week will overestimate typical demand and overstock inventory. A fund manager comparing two strategies using arithmetic mean instead of geometric mean will misread which strategy actually grew capital faster. The right average depends on what the numbers represent.

Students preparing for CBSE, ICSE, CAT, or GATE exams regularly encounter questions on mean, median, and mode that test conceptual understanding, not just computation. Knowing when to apply each measure - and what each one reveals about the underlying data - is one of those skills that appears repeatedly across quantitative subjects, from economics to statistics to data science.

Related Calculators

Frequently Asked Questions

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

Mean is the arithmetic average (sum divided by count) - the most commonly cited statistic. Median is the middle value when numbers are sorted; half the values are above it and half below. Mode is the most frequently occurring value. The three measures diverge when data is skewed. In a symmetric, bell-shaped dataset all three are roughly equal. In right-skewed data like income or property prices, the mean is pulled up by high outliers, making it unrepresentative of most people's experience. Choosing the right measure for a given dataset is a fundamental statistical literacy skill that affects how data is interpreted in business, policy, and academic research.

How is median calculated for an even set of numbers?+

For a dataset with an even count, there is no single middle value, so the median is defined as the average of the two middle values after sorting. Example: [3, 7, 10, 15] has four values. The two middle values are 7 and 10. Median = (7 + 10) / 2 = 8.5. This convention ensures the median is always a unique, well-defined number regardless of whether the count is odd or even. For an odd count - say [3, 7, 10, 15, 20] - the median is simply the third (middle) value, which is 10, with no averaging required.

What if there is no mode?+

If every value in the dataset appears exactly once, there is no mode - no value is more frequent than any other. A dataset can also be bimodal, meaning two values each appear with equal maximum frequency. For example, [2, 3, 3, 5, 7, 7] has modes 3 and 7. When there are two modes, this often signals two distinct sub-groups - test scores from two different classes combined into one list, for instance. Multimodal datasets (three or more modes) suggest complex structure. In practice, mode is most useful for categorical data (most common city, most popular product) rather than continuous numerical data.

What is range in statistics?+

Range = Maximum value minus Minimum value. It gives the total span of the dataset in a single number. However, range has a critical weakness: it is entirely determined by the two extreme values and ignores how the rest of the data is distributed. The dataset [1, 50, 50, 50, 100] and [1, 25, 50, 75, 100] have identical ranges (99) but very different distributions. For a more complete picture of spread, use range alongside standard deviation or interquartile range (IQR), which measures the spread of the middle 50% of data and is resistant to outliers that can make range misleading.

When should I use median instead of mean?+

Use median when your data has extreme outliers or is skewed. Example: if 9 employees earn Rs. 30,000/month and one earns Rs. 10 lakh, the mean salary is Rs. 1.27 lakh - misleading. The median is Rs. 30,000 - more representative. Income and wealth data, real estate prices, and hospital waiting times always use median for this reason. Mean works well for symmetric data without outliers, like exam scores in a normal class.

What is weighted average and how is it calculated?+

Weighted average assigns different importance (weights) to different values before averaging. Formula: Weighted Mean = (sum of weight x value) / (sum of weights). Example: a course has three tests worth 20% each and a final exam worth 40%. Scores: 75, 80, 70, and 85. Weighted average = (75x0.2 + 80x0.2 + 70x0.2 + 85x0.4) = 15 + 16 + 14 + 34 = 79. A simple average gives 77.5 - lower, because the final exam (the highest score) carries more weight. Weighted averages are used in GPA calculations, mutual fund portfolio returns (weighted by allocation), and any situation where not all values contribute equally to the overall figure.

What is geometric mean and when does it apply?+

Geometric mean is the nth root of the product of n values. For two values a and b: geometric mean = sqrt(a x b). It is the correct average for growth rates and multiplicative processes. If an investment grows by 100% in year 1 and falls by 50% in year 2, the arithmetic mean return is 25%, but the geometric mean is 0% - accurately reflecting that you end with the same amount you started with (1 x 2 x 0.5 = 1). CAGR (Compound Annual Growth Rate) is a geometric mean. Whenever you are averaging ratios, percentages, or compounding factors - not absolute values - geometric mean gives the correct answer while arithmetic mean gives a misleadingly optimistic figure.