Comparison
- Geometric Mean: 2.16%
- Arithmetic Mean: 2.1%
Interpretation
The geometric mean (2.16%) is slightly higher than the arithmetic mean (2.1%). This difference occurs because the geometric mean accurately reflects the compounded relative change over the years, whereas the arithmetic mean simply averages the percentages without considering the compounding effects.
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: 2.16%
Arithmetic Mean: 2.10%
This confirms our manual calculations and illustrates the importance of using the geometric mean for average changes in normalized or indexed data, as it provides a more accurate measure of compounded relative change.