Skip to main contentSkip to solution

If the population of a town is pp in the beginning of any year then it becomes 3+2p3+2 p in the beginning of the next year. If the population in the beginning of 20192019 is 10001000 then the population in the beginning of 20342034 will be

Solution

✅ Correct Option: 1

We're given that if a town's population is p at the beginning of any year, it becomes 3 + 2p at the beginning of the next year.

Starting population in 2019: 1000

We need to find: Population in 2034


The population follows this pattern:

Population(next year) = 3 + 2 × Population(current year)

Let's trace through the first few years:

2019: Population = 1000

2020: Population = 3 + 2(1000) = 3 + 2000 = 2003

2021: Population = 3 + 2(2003) = 3 + 4006 = 4009

2022: Population = 3 + 2(4009) = 3 + 8018 = 8021


Let's examine these results more carefully:

2020: 2003 = 2006 - 3 = 2 × 1003 - 3

2021: 4009 = 4012 - 3 = 4 × 1003 - 3 = 22×1003−32^2 × 1003 - 3

2022: 8021 = 8024 - 3 = 8 × 1003 - 3 = 23×1003−32^3 × 1003 - 3

Pattern Discovery: After n years from 2019, the population is 2n×1003−32^n × 1003 - 3

Why 1003? Notice that 1003 = 1000 + 3, where 1000 is our starting population.


Key Insight: This recurrence relation P(n+1) = 3 + 2P(n) can be solved using a substitution.

If we let Q(n) = P(n) + 3, then:

Q(n+1) = P(n+1) + 3

= (3 + 2P(n)) + 3

= 6 + 2P(n)

= 2(P(n) + 3)

= 2Q(n)

This means Q(n) grows by a factor of 2 each year!

Since P(2019) = 1000, we have Q(2019) = 1000 + 3 = 1003

Therefore: Q(2019 + k) = 1003 × 2k2^k

Converting back: P(2019 + k) = Q(2019 + k) - 3 = 1003×2k−31003 × 2^k - 3


From 2019 to 2034: k = 2034 - 2019 = 15 years

Population in 2034 = 1003×215−31003 × 2^{15} - 3

We don't need to calculate 2152^{15} explicitly - the answer is 215×1003−32^{15} × 1003 - 3


When dealing with recurrence relations of the form P(n+1) = a + bP(n):

Try the substitution Q(n) = P(n) + c where c = a1−b\frac{a}{1-b}

This converts it to a geometric sequence: Q(n+1) = bQ(n)

Solve the geometric sequence and convert back

Final Answer: 215(1003)−32^{15}(1003) - 3

Keyboard Shortcuts

  • Left arrow: Previous question
  • Right arrow: Next question
  • S key: Jump to solution
  • Q key: Jump to question