Average Percentage Calculator
Calculate the average of multiple percentages using arithmetic mean, weighted average, geometric mean, and harmonic mean methods.
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.
Formulas
The arithmetic mean of n percentage values is defined as:
When each percentage pi is associated with a weight wi, the weighted average is:
The geometric mean, suited for compounding growth rates, is computed as:
The harmonic mean, used when averaging rates, is:
Where pi = the i-th percentage value, wi = the weight associated with the i-th value, and n = total number of entries.
Reference Data
| Method | Formula | Best Use Case | Restriction |
|---|---|---|---|
| Arithmetic Mean | โ pin | Equal-weight samples, quick estimates | None |
| Weighted Mean | โ pi โ wiโ wi | Unequal sample sizes, survey data, portfolio returns | wi > 0 |
| Geometric Mean | โn โ pi | Compounding growth rates, investment returns | pi > 0 |
| Harmonic Mean | nโ 1pi | Averaging rates (speed, efficiency, P/E ratios) | pi โ 0 |
| Median | Middle value when sorted | Skewed distributions, outlier resistance | n โฅ 1 |
| Range | pmax โ pmin | Spread assessment | n โฅ 2 |
| Standard Deviation | โโ(pi โ )2n | Variability measurement | n โฅ 2 |
| Coefficient of Variation | ฯ ร 100% | Comparing variability across datasets | โ 0 |
| Sum of Percentages | โ pi | Total cumulative percentage | None |
| Count | n | Number of entries | None |
| Minimum | min(pi) | Lowest percentage in set | None |
| Maximum | max(pi) | Highest percentage in set | None |