Hello, Paola,
Imagine a table with years in one column and population in the next. The first row starts with the year 2000 and population 65000. This population is our "base." Let's establish Yn as the population for the nth year after 2000. For example, Y0 is year 2000, Y1 is 2001, Y2 is 2002, and so on. [n = 0, 1, 2, 3, 4, . . . .]
We can see a pattern if we look at what happens the first two years:
Y0 = (65000)
Y1 = (65000)*(1+0.025) The 1.025 represents the 65,000 we started with and the 0.025 is the increase for the next year. This gives us a population of 66625 for Y1, or 2001.
I'll use Y0 instead of 65000 in the next steps. Y0 is defined by the problem, but we can use any starting value to get a correct answer to what that value would be in n incremental years.
If we continue to the next year. We take the population of 2001 and increase it again by (1+0.025).
Y2 = Y1*(1.025) = 68291 for 2002 [Let's round to the nearest whole number, since fractions of a person are only allowed in movies.]
If we did each year in the same manner, we'll see a repeating trend in the numbers. That trend can be expressed by:
Yn = (65000)*(1.025)n
In other words, we can take the starting population (Y0) and multiply it by(1.025) n times to get the population for that year.
Y3 = Y1(1.025)(1.025)(1.025)
Year (2000+3) has a population of (65000)*(1.025)n
2003 population = 69998
The general equation can be stated as Yn = Y1*(1.025)n
Bob