

Comparison
- Geometric Mean: 5.8%
- Arithmetic Mean: 7.5%
Interpretation
The geometric mean (5.8%) is lower than the arithmetic mean (7.5%). This difference occurs because the geometric mean accounts for the compounding effect over multiple periods, providing a more accurate measure of average annual return for proportional changes. The arithmetic mean overestimates the average return by not considering the compounding effect.
Detailed Steps in Python
Here's the Python code to perform these calculations:
Output
When you run this code, you will get the following output:
plaintextCopy code
Geometric Mean: 5.80%
Arithmetic Mean: 7.50%
This confirms our manual calculations and illustrates the importance of using the geometric mean for average percentage returns in proportional changes, as it provides a more accurate measure of compounded relative change.