User Rating 0.0 โ˜…โ˜…โ˜…โ˜…โ˜…
Total Usage 0 times
Is this tool helpful?

Your feedback helps us improve.

โ˜… โ˜… โ˜… โ˜… โ˜…

About

Averaging percentages is not a trivial operation. A naive arithmetic mean of 20% and 50% yields 35%, but if the first percentage applies to 1000 items and the second to 10 items, the true weighted result is approximately 20.3%. Ignoring sample sizes or weights produces misleading KPIs, incorrect financial projections, and flawed scientific conclusions. This tool computes four distinct averages - arithmetic, weighted, geometric, and harmonic - so you can select the method appropriate to your data structure. It assumes all input values represent ratio-scale percentages and that weights are strictly positive real numbers.

Limitations: the geometric mean requires all values to be positive (it is undefined for zero or negative percentages). The harmonic mean is undefined when any value equals zero. For compounding growth rates, convert percentages to growth factors before averaging; this calculator handles that conversion internally when computing the geometric mean. Pro tip: if your percentages represent conversion rates across segments of unequal size, always use the weighted average - never the simple mean.

average percentage weighted average calculator percentage mean geometric mean percentage harmonic mean

Formulas

The arithmetic mean of n percentage values is defined as:

p = 1n nโˆ‘i=1 pi

When each percentage pi is associated with a weight wi, the weighted average is:

pw = nโˆ‘i=1 pi โ‹… winโˆ‘i=1 wi

The geometric mean, suited for compounding growth rates, is computed as:

pg = ( nโˆi=1 pi )1n

The harmonic mean, used when averaging rates, is:

ph = nnโˆ‘i=1 1pi

Where pi = the i-th percentage value, wi = the weight associated with the i-th value, and n = total number of entries.

Reference Data

MethodFormulaBest Use CaseRestriction
Arithmetic Meanโˆ‘ pinEqual-weight samples, quick estimatesNone
Weighted Meanโˆ‘ pi โ‹… wiโˆ‘ wiUnequal sample sizes, survey data, portfolio returnswi > 0
Geometric Meanโˆšn โˆ piCompounding growth rates, investment returnspi > 0
Harmonic Meannโˆ‘ 1piAveraging rates (speed, efficiency, P/E ratios)pi โ‰  0
MedianMiddle value when sortedSkewed distributions, outlier resistancen โ‰ฅ 1
Rangepmax โˆ’ pminSpread assessmentn โ‰ฅ 2
Standard Deviationโˆšโˆ‘(pi โˆ’ p)2nVariability measurementn โ‰ฅ 2
Coefficient of Variationฯƒp ร— 100%Comparing variability across datasetsp โ‰  0
Sum of Percentagesโˆ‘ piTotal cumulative percentageNone
CountnNumber of entriesNone
Minimummin(pi)Lowest percentage in setNone
Maximummax(pi)Highest percentage in setNone

Frequently Asked Questions

Use the weighted average whenever your percentages represent rates derived from groups of unequal size. For example, if Department A has a 90% pass rate across 200 employees and Department B has a 70% pass rate across 800 employees, the simple mean gives 80%, but the correct weighted average is (90ร—200 + 70ร—800) / (200+800) = 74%. Failing to weight by group size produces Simpson's Paradox - a statistically misleading result.
The geometric mean involves computing the product of all values and then taking the n-th root. If any value is zero, the entire product becomes zero, yielding a meaningless result. If any value is negative, the product may be negative, and even roots of negative numbers are undefined in real number arithmetic. For growth-rate analysis, convert negative returns to growth factors first: a โˆ’12% return becomes a factor of 0.88.
The harmonic mean gives greater weight to smaller values. It is the correct average when dealing with rates defined as ratios with a common numerator. For example, averaging speeds over equal distances (not equal times) requires the harmonic mean. If you drive 60 km/h for 100 km and 40 km/h for 100 km, the harmonic mean speed is 2/(1/60 + 1/40) = 48 km/h, not the arithmetic mean of 50 km/h.
Yes, the arithmetic and weighted means handle any real number. Values above 100% occur in year-over-year growth metrics (e.g., 150% growth). Negative percentages appear in loss scenarios. However, the geometric mean is restricted to positive values, and the harmonic mean is undefined at zero. This tool flags these constraints and skips the invalid method rather than producing an error.
The standard deviation (population ฯƒ) quantifies how spread out your percentage values are from the arithmetic mean. A low ฯƒ indicates the values cluster tightly, meaning the average is a reliable summary. A high ฯƒ signals significant dispersion - the average alone may be misleading. The coefficient of variation (CV = ฯƒ/mean ร— 100%) normalises this spread, enabling comparison across datasets with different scales.
When every weight equals 1, the weighted average formula reduces algebraically to the simple arithmetic mean: ฮฃ(pแตข ร— 1) / ฮฃ(1) = ฮฃ(pแตข) / n. The weights represent relative importance or sample size. They do not need to sum to 100 or any specific number - only their ratios matter. Weights of 2, 4, 6 produce the same result as 1, 2, 3.