Can You Solve This Differential Equation Involving Exponential Decay?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 2K views
zheng89120
Messages
139
Reaction score
0

Homework Statement



Assume NA = NAo exp(-t/a)

Solve the differential equation:

dNB/dt + NB/b = NA/a

Homework Equations



differential equations

The Attempt at a Solution



trial function: NB = C exp(-t/a) + D exp (-t/b)

with initial condition: C + D = NBo

I tried plugging in this and NA into the original equation, but was not able to solve for C or D...
 
Physics news on Phys.org
Unfortunately I don't really have much experience with this kind of differential equation. After I substituted the trial function and C = NB - D into the equation, I got:

[ -(NB-D)/a*exp(-t/a) - D/b*exp(-t/b) ] + [ NB-D/b*exp(-t/a) - D/b*exp(-t/b) ] = NA/a*exp(-t/a)

how would you solve 'D' from this?
 
You want to plug the trial function into the differential equation:
[tex]\frac{d}{dt}(C e^{-t/a} + D e^{-t/b}) +\frac{1}{b}(C e^{-t/a} + D e^{-t/b}) = \frac{N_{A_0}}{a} e^{-t/a}[/tex]
When you differentiate the first term, you'll see the e-t/b terms cancel out, which leaves only the e-t/a terms, allowing you to solve for C. Once you know C, you can solve for D.
 
Ok, thanks for the insightful help, vela. This is what I got for NB, with D=NBo-C :

NB = [NAo / (a/b-1)] *exp(-t/a) + [NBo - NAo / (a/b - 1)] *exp(-t/b)

assuming this is correct.