Issue in first order differential equation

119 Views Asked by At

I've tried many times to reach the solution of a first order differential equation (of the last equation) but unfortunately I couldn't. Could you please help me to know how did he get this solution.

The equation is:

$$ \frac{dX}{dt} = k_f - (k_f + k_b) X $$

The author assumed that $$X=0 ~~~at~~~t=0 $$

Then, he said in his first publication the solution is given as: $$ X = \frac{k_f}{(k_f + k_b)} ~~ \lbrace ~~1 - \exp [ ~ - ( k_f + k_b )~t~]~ \rbrace $$

I agree with him about the above equation as I am able to reach this form by using the normal solution of the first order differential equation.

In another publication, the same author dealt with the same equations, but when he wrote the solution of the first order differential equation, he wrote it in another form which I could't reach it and I don't know how did he reach it. This form is given as:

$$ X = \frac{k_f}{(k_f + k_b)} ~~ \lbrace ~~1 - \exp [ ~ - ( k_f + k_b )~t~]~ \rbrace ~~ + ~~ X_0 ~~\exp [ ~- (k_f + k_b ) ~~t~~]$$

and he said $X_0$ was taken to be zero in the first publication.

Can any of you help how did the author get this solution please?

2

There are 2 best solutions below

0
On

It looks like he changed the initial condition $$ X(t=0) = 0\to X_0 $$ this means when solving your ode you get this additional term.

0
On

It is basically an equation $X' + \alpha X = \beta$ with $\alpha = k_f+f_b$ and $\beta=k_f$ constants, so you solve the homogeneous equation and get the solution for the unhomogeneous from there...

In this case, we can use an ansatz $X = a + be^{ct}$ which leads to:

$X' = c(be^{ct}) = c (X - a) = cX - ca.$

Identifying the terms, we have $c = -\alpha$ and $-ca = \beta$. Lastly, the initial condition $X_0 = a+b$ gives you $b$.

Substituting $a,b,c$ with the correct values in $X = a+be^{ct}$ gives, after slight manipulations, the answer you are seeking, in terms of $\alpha,\beta, X_0$.