The question I am trying to answer is as follows:
- A smoker has a daily intake of $0.02$mg of nicotine. It is assumed that $1$% of nicotine is disintegrated by the body per day.
a) Set up a difference equation for the amount of nicotine $N_t$ after $t$ days, starting with an initial level of $N_0=0$.
b) Derive a closed form solution for $N_t$.
So my attempt was:
a) $N_{t+1}=0.99N_t+0.02$
b) $N_t= \frac{N_{t+1}-0.02}{0.99}$
I do however feel like the second part is incorrect and it is not as simple as solving the prior equation for $N_t$, assuming my part a) is even correct. The term "closed form solution" is what I don't particularly understand.
Any insight would be appreciated!
Note,
$$N_{t+1}=0.99N_t+0.02$$
$$2=0.99(2)+0.02$$
What happens when you subtract the two? We get,
$$(N_{t+1}-2)=0.99(N_t-2)$$
Now let $A_t=N_{t}-2$ so that,
$$A_{t+1}=0.99A_t$$
$$A_t=A_0(0.99)^{t}$$
$$A_t=-2(0.99)^{t}$$
$$N_t=2-2(0.99)^{t}$$