Let's say I have the following table representing 3 data points:
Year | Number of units
---- | ----
2002 | 1349 --> P1
2003 | 1391 --> P2
2004 | 1324 --> P3
My goal is to calculate the Number of unit percent change from 2002 to 2004. I know I can achieve this using the following equation:
(P3-P1)/P1 = (1324-1349)/1349 = -0.0185 = -1.85%
I assume adding the percent change from year to year would yield the same value, but it doesn't:
(P2-P1)/P1 = (1391-1349)/1349 = 0.0311 = 3.11%
(P3-P2)/P2 = (1324-1391)/1391 = -0.0482 = -4.82%
3.11% + (-4.82%) = -1.71%
My question is why are these not equal? Am I doing something wrong?
(P3-P1)/P1from(P2-P1)/P1 + (P3-P2)/P2– Johnny Metz Sep 06 '17 at 17:44