How do you find the average of percentages?+
Simple average: add all percentages, divide by count. Valid only for equal-sized groups. Example: average of 20%, 50%, 80% = 50%. Weighted average (for unequal groups): Σ(pct × group size) / Σ(group sizes). Example: 30% from 200, 70% from 800 → (0.30×200 + 0.70×800)/1000 × 100 = 62%, not 50%.
What is the weighted average of percentages?+
Weighted average = Σ(pct_i / 100 × n_i) / Σn_i × 100, where n_i is the group size. This is equivalent to pooling the raw data: sum all individual successes, divide by total population. Use it whenever percentages come from groups with different sizes — schools, factories, departments, regions.
When should I use simple vs weighted average for percentages?+
Simple average: when all groups are the same size (e.g., five equally-sized test batches, or one observation per percentage). Weighted average: when groups have different sizes — averaging pass rates across schools, defect rates across production lines, approval ratings across departments with different headcounts. If in doubt and group sizes vary, use weighted average.
Why is averaging percentages tricky?+
Percentages hide absolute counts. A 90% pass rate from 10 students and a 60% pass rate from 1,000 students: simple average = 75%, but weighted average = (9+600)/1010 × 100 ≈ 60.3%. The 1,000-student group dominates. Simple averaging over-represents the smaller group, producing a misleading result that overstates the combined pass rate by 15 percentage points.
What is Simpson's Paradox and how does it relate to percentage averages?+
Simpson's Paradox: a trend visible in each subgroup can reverse or disappear when groups are combined incorrectly. Classic example: Treatment A beats B in mild cases AND severe cases, but simple percentage averaging makes B look better overall. Weighted averaging with proper group sizes always resolves the paradox by correctly pooling the data.
How do you average percentages in Excel?+
Simple average: =AVERAGE(A1:A5). Weighted average: =SUMPRODUCT(A1:A5/100, B1:B5)/SUM(B1:B5)*100, where column A holds percentages (as numbers like 30, 70) and column B holds group sizes. Alternatively: =SUMPRODUCT(A1:A5, B1:B5)/SUM(B1:B5) if column A already contains decimal fractions (0.30, 0.70).
What is the difference between average percentage and percentage change?+
Average percentage summarises multiple rate measurements into one representative value (e.g., 70% average pass rate across schools). Percentage change measures how one value has changed: (New−Old)/Old × 100. These are separate calculations for different purposes. Use average percentage for summarising rates; use percentage change for measuring growth or decline over time.
Can I average percentages that exceed 100%?+
Yes — for growth rates or ratios, values can exceed 100%. Simple average: mean of 120%, 80%, 200% = 133.3%. Weighted average still uses Σ(pct × weight) / Σweight with the appropriate weights (e.g., revenue for growth rates). The formula works the same way regardless of whether values are above or below 100%.
How do I calculate the overall pass percentage across multiple schools?+
Weighted average: multiply each school's pass % by its student count, sum all products, divide by total students. Example: School A 80% (500 students), School B 60% (1,500 students): overall = (0.80×500 + 0.60×1500) / 2000 × 100 = (400+900)/2000 × 100 = 65%. Simple average of 70% over-represents the smaller school.
What is the overall percentage if I know department-wise percentages and headcounts?+
Overall % = Σ(dept % × dept headcount) / total headcount × 100. Example: HR 90% (50), Engineering 70% (200), Sales 80% (150): overall = (0.90×50 + 0.70×200 + 0.80×150) / 400 × 100 = (45+140+120)/400 × 100 = 305/400 × 100 = 76.25%. Simple average of the three percentages (80%) would overstate the combined rate.