Average Percentage Calculator
Find the true average of percentages - simple arithmetic average or properly weighted by group size.
% What is Average Percentage?
The average percentage is a single representative percentage summarising a set of individual percentages. There are two ways to compute it, and choosing the wrong method is one of the most common statistical mistakes in everyday analysis.
The simple average (arithmetic mean of percentages) is correct only when every percentage is based on the same number of observations or the same group size. You add all the percentages and divide by how many there are. For example, if three equally-sized departments have 60%, 70%, and 80% task completion, the average is (60+70+80)/3 = 70%. This is valid because the three groups contribute equally.
The weighted average is necessary when percentages represent rates from groups of different sizes. The formula is: Weighted Average = Σ(percentagei × totali) / Σtotali. This is equivalent to pooling all the raw counts: (total successes across all groups) / (total population across all groups) × 100. For example, if a small school of 100 students has a 90% pass rate and a large school of 1,000 students has a 50% pass rate, the simple average of 70% is misleading. The weighted average = (0.90×100 + 0.50×1000) / 1100 × 100 = 590/1100 × 100 ≈ 53.6% - much closer to the large school’s rate, which dominates the combined student pool.
The discrepancy between simple and weighted averages can be dramatic. This is related to Simpson’s Paradox, where a trend in grouped data can completely reverse when groups are combined without proper weighting. This calculator shows both methods and highlights how much they differ - a useful sanity check whenever you report combined percentages.
📐 Formula
📖 How to Use This Calculator
Steps to Calculate Average Percentage
💡 Example Calculations
Example 1 — Simple Average of Test Scores
Four equal batches score 55%, 65%, 72%, 88%
Example 2 — Weighted Average Pass Rate Across Schools
Small school: 90% pass (100 students) - Large school: 50% pass (1,000 students)
Example 3 — Average Defect Rate Across Production Lines
Line A: 2% defect (5,000 units) - Line B: 5% defect (2,000 units) - Line C: 1% defect (8,000 units)
Example 4 — Department-Wide Approval Rating
HR: 85% approval (40 staff) - Engineering: 70% (150 staff) - Sales: 75% (60 staff)
❓ Frequently Asked Questions
🔗 Related Calculators
How do you find the average of percentages?
Simple average: add all percentages and divide by the count. Example: average of 20%, 50%, 80% = (20+50+80)/3 = 50%. But if the groups behind each percentage have different sizes, use weighted average: Σ(pct × group size) / Σ(group sizes). Use simple average only when all groups are equal in size.
What is the weighted average of percentages?
Weighted average = Σ(pct_i / 100 × n_i) / Σn_i × 100, where n_i is the size of each group. Example: 30% pass rate from 200 students and 70% pass rate from 800 students: weighted avg = (0.30×200 + 0.70×800)/(200+800) × 100 = (60+560)/1000 × 100 = 62%. Simple average of 50% would be wrong.
When should I use simple vs weighted average for percentages?
Simple average: when all groups are the same size, or when each percentage represents one observation (e.g., average score across equal-sized test batches). Weighted average: when groups have different sizes, such as averaging pass rates across schools with different enrolments, or averaging defect rates across factories with different output volumes.
Why is averaging percentages tricky?
Percentages hide the absolute counts behind them. A 90% success rate from 10 trials carries far less statistical weight than a 60% success rate from 1,000 trials. Simply averaging 90% and 60% gives 75%, but pooling the raw data: (9 + 600) / (10 + 1000) × 100 ≈ 60.3% - far closer to the larger group's rate. Weighted average correctly accounts for this by using group sizes.
What is Simpson's Paradox and how does it relate to percentage averages?
Simpson's Paradox occurs when a trend appears in several groups of data but disappears (or reverses) when those groups are combined. For example: Treatment A has 80% success (800/1000) in mild cases and 40% success (200/500) in severe cases. Treatment B has 90% (90/100) in mild and 50% (50/100) in severe. A is better in each group, but simple percentages might suggest B is better overall. Weighted average with group sizes reveals the truth.
How do you average percentages in Excel?
Simple average: =AVERAGE(A1:A10) where cells contain percentages. Weighted average: =SUMPRODUCT(A1:A10/100, B1:B10)/SUM(B1:B10)*100, where column A contains percentages and column B contains group sizes. Alternatively: =SUMPRODUCT(A1:A10, B1:B10)/SUM(B1:B10) if percentages are already as fractions (0.30, not 30%).
What is the difference between average percentage and percentage change?
Average percentage: the mean value of several percentage figures (e.g., three departments have 60%, 70%, 80% completion - average is 70%). Percentage change: how much a value has changed relative to its original: (New − Old)/Old × 100. These are different calculations. Use average percentage when summarising multiple rate measurements; use percentage change when measuring growth or decline.
Can I average percentages that exceed 100%?
Yes - for growth rates or ratios expressed as percentages, values can exceed 100% (e.g., revenue grew by 150%). Simple averaging still works: mean of 120%, 80%, 200% = (120+80+200)/3 ≈ 133%. For weighted average of such rates, the weighted formula Σ(pct × weight) / Σweight still applies. Just ensure the weights represent the appropriate quantity (revenue, population, etc.).
How do I calculate the average pass percentage across multiple schools?
Use weighted average: multiply each school's pass percentage by its number of students, sum all those products, then divide by the total students across all schools. Example: School A 80% (500 students), School B 60% (1500 students): weighted avg = (0.80×500 + 0.60×1500) / 2000 = (400+900)/2000 = 65%. Simple average of 70% would over-represent the smaller school.
What is the overall percentage if I know department-wise percentages and headcounts?
Overall percentage = Σ(department percentage × department headcount) / total headcount × 100. This gives the correct pooled rate. Example: HR dept 90% (50 staff), Engineering 70% (200 staff), Sales 80% (150 staff). Overall = (0.90×50 + 0.70×200 + 0.80×150) / 400 × 100 = (45+140+120)/400 × 100 = 76.25%.