2.1. Example: Growth Rates

The relationship between two measurements of the same quantity taken at different times is often expressed as a growth rate. For example, the United States federal government employed 2,766,000 people in 2002 and 2,814,000 people in 2012. To compute a growth rate, we must first decide which value to treat as the initial amount. For values over time, the earlier value is a natural choice. Then, we divide the difference between the changed and initial amount by the initial amount.

initial = 2766000
changed = 2814000
(changed - initial) / initial
Copy to clipboard
0.01735357917570499
Copy to clipboard

It is also typical to subtract one from the ratio of the two measurements, which yields the same value.

(changed/initial) - 1
Copy to clipboard
0.017353579175704903
Copy to clipboard

This value is the growth rate over 10 years. A useful property of growth rates is that they don’t change even if the values are expressed in different units. So, for example, we can express the same relationship between thousands of people in 2002 and 2012.

initial = 2766
changed = 2814
(changed/initial) - 1
Copy to clipboard
0.017353579175704903
Copy to clipboard

In 10 years, the number of employees of the US Federal Government has increased by only 1.74%. In that time, the total expenditures of the US Federal Government increased from $2.37 trillion to $3.38 trillion in 2012.

initial = 2.37
changed = 3.38
(changed/initial) - 1
Copy to clipboard
0.4261603375527425
Copy to clipboard

A 42.6% increase in the federal budget is much larger than the 1.74% increase in federal employees. In fact, the number of federal employees has grown much more slowly than the population of the United States, which increased 9.21% in the same time period from 287.6 million people in 2002 to 314.1 million in 2012.

initial = 287.6
changed = 314.1
(changed/initial) - 1
Copy to clipboard
0.09214186369958277
Copy to clipboard

A growth rate can be negative, representing a decrease in some value. For example, the number of manufacturing jobs in the US decreased from 15.3 million in 2002 to 11.9 million in 2012, a -22.2% growth rate.

initial = 15.3
changed = 11.9
(changed/initial) - 1
Copy to clipboard
-0.2222222222222222
Copy to clipboard

An annual growth rate is a growth rate of some quantity over a single year. An annual growth rate of 0.035, accumulated each year for 10 years, gives a much larger ten-year growth rate of 0.41 (or 41%).

1.035 * 1.035 * 1.035 * 1.035 * 1.035 * 1.035 * 1.035 * 1.035 * 1.035 * 1.035 - 1
Copy to clipboard
0.410598760621121
Copy to clipboard

This same computation can be expressed using names and exponents.

annual_growth_rate = 0.035
ten_year_growth_rate = (1 + annual_growth_rate) ** 10 - 1
ten_year_growth_rate
Copy to clipboard
0.410598760621121
Copy to clipboard

Likewise, a ten-year growth rate can be used to compute an equivalent annual growth rate. Below, t is the number of years that have passed between measurements. The following computes the annual growth rate of federal expenditures over the last 10 years.

initial = 2.37
changed = 3.38
t = 10
(changed/initial) ** (1/t) - 1
Copy to clipboard
0.03613617208346853
Copy to clipboard

The total growth over 10 years is equivalent to a 3.6% increase each year.

In summary, a growth rate g is used to describe the relative size of an initial amount and a changed amount after some amount of time t. To compute changed, apply the growth rate g repeatedly, t times using exponentiation.

initial * (1 + g) ** t

To compute g, raise the total growth to the power of 1/t and subtract one.

(changed/initial) ** (1/t) - 1