1
$\begingroup$

I am working on a problem where 10% of a group of 10500 objects is diminished per year. However, 1000 new objects are added to the group each year, and I have to find the "long-term viability" of the group.

The issue is that I don't know how to integrate the replenishing factor into the exponential decay function. Is there some way to do this?

Thanks!

2 Answers 2

1

Let $a_n$ be the number of objects after $n$ years. Then you have $a_0=10500,\qquad a_n=(.9)a_{n-1}+1000$ Have you studied such linear recurrences?

  • 1
    You could use this model to calculate the number of objects recursively, but if you have studied linear recurrences you may have learned that you can *solve* them and get a formula for $a_n$ that depends only on $n$ (in particular, *not* on previous values). Even if you haven't studied the topic, you mau be able to figure out the solution on your own, by doing a few iterations, guessing the pattern, and then proving it. Also, if all that interest you is the long-term viability, just think about solving $a_{n+1}=a_n$, and the implications of a solution.2012-09-08
2

For a simple approach, if there is a stable population, it must satisfy $n=0.9n+1000$. This is easily solved, giving $n=10000$ You can prove that if the population is greater than 10000 in any given year, it will be greater next year, but closer. Similarly, (not important for your problem), if the population is less than 10000 one year, it will be less than 10000 next year, but closer. So the population converges on 10000, regardless of the start.

  • 0
    Yes, that's what I get. I think your comment on the other answer helped me figure out what you were saying!2012-09-08