Which difference equation better describes the problem ?

sid9221
Messages
110
Reaction score
0
http://dl.dropbox.com/u/33103477/Nicotine.png

N_{t+1} = N_t - \frac{1.02}{100}N_t + 0.02

OR

N_{t+1} = N_t - \frac{1}{100}N_t + 0.02

The first equation considers counts the amount the body absorbs everyday to include the amount ingested that day, the other doesn't.

The answers are close but different.

Which one do you think is correct.

Also, what does "closed form of the solution" mean ?
 
Last edited by a moderator:
Physics news on Phys.org
sid9221 said:
http://dl.dropbox.com/u/33103477/Nicotine.png

N_{t+1} = N_t - \frac{1.02}{100}N_t + 0.02

OR

N_{t+1} = N_t - \frac{1}{100}N_t + 0.02
The two equations can be rewritten as:

Nt+1 = -.02Nt + .02
and
Nt+1 = .99Nt + .02

Which one do you think better describes your situtation?
sid9221 said:
The first equation considers counts the amount the body absorbs everyday to include the amount ingested that day, the other doesn't.

The answers are close but different.

Which one do you think is correct.

Also, what does "closed form of the solution" mean ?
 
Last edited by a moderator:
Mark44 said:
The two equations can be rewritten as:

Nt+1 = -.02Nt + .02
and
Nt+1 = .99Nt + .02

Which one do you think better describes your situtation?

You've made a mistake there:

1 - \frac{1.02}{100} ≠ -0.02

I think you though 1 was 1/100.

In other words the equations are:

t_{n+1} = 0.9898t_{n} + 0.02

or

t_{n+1} = 0.99t_{n} + 0.02
 
Right - I subtracted 1.02 from 100 and got -.02. I occasionally make a mistake in my checkbook, too!

So with your correction, which equation looks like the right one?
 
They both seem good to me, as both "make sense", the steady state for the first is 1.96 and second is 2. The final answers work out close enough to each other.

The reason I'm putting it up here is to consider other people's interpretation. Would you consider the nicotine added today to be removed by the body today itself ?

IMO it would really depend on when you take a piss really. If you take a weee in the morning then the nicotine leaves then, take a weee at night nicotine leaves then...eh ?
 
Last edited:
sid9221 said:
http://dl.dropbox.com/u/33103477/Nicotine.png

N_{t+1} = N_t - \frac{1.02}{100}N_t + 0.02

OR

N_{t+1} = N_t - \frac{1}{100}N_t + 0.02

The first equation considers counts the amount the body absorbs everyday to include the amount ingested that day, the other doesn't.

The answers are close but different.

Which one do you think is correct.

Also, what does "closed form of the solution" mean ?

There are several possibilities: (1) the input 0.02 mg occurs at the start of a day; (2) it occurs at the end of a day; (3) it is spread out evenly throughout the day. Case (3) is trickier, so let's leave it (it makes a good modelling exercise, however). Assume that N_t = amount of nicotine (in mg) right at the start of day t (before any smoking, etc.)

Case (1): N_{t+1} = 0.99 (N_t + 0.02).

Case (2): N_{t+1} = 0.99 N_t + 0.02.

By "closed-form" solution, the question means for you to find a formula N_t = f(t), and it wants the function f.

RGV
 
Last edited by a moderator:
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top