I want to solve the following delayed differential equation
$$G'(t)=\Lambda +\omega G(t-\tau)-\mu G(t),$$
when $G(t)=G_0>0$ for $t\in[-\tau,0]$ and $\Lambda,\omega, \mu, \tau>0$. Note that $G_0,\Lambda,\omega,\mu,\tau$ and final time $T_f$ are arbitrary.
I tried to solve it using Wolfram Mathematica 11.0 with code
sol=DSolve[{G'[t]==a+b*G[t-d]-u*G[t], G[t/;t<=0]==G0}, G[t], {t, 0, Tf}]
and I didn't receive the solution.
Can somebody help me?
Thank you very much! Ana
You solve the equation on intervals of length $\tau$. Let's find the solution on $[0,\tau]$. If $t\in[0,\tau]$, then $t-\tau\in[-\tau,0], G(t-\tau)=G_0$ and the the equation becomes $$ G'(t)=\Lambda +\omega\,G_0-\mu\,G(t), $$ with initial condition $G(0)=G_0$. It is a linear equation, whose solution is, if I have made no errors, $$ G(t)=\frac1\mu\bigl((\mu-\omega)G_0-\Lambda)\,e^{-\mu t}+\Lambda+\omega\,G_0\bigr). $$ Knowing $G$ on $[0,\tau]$, proceed now to find $G$ on $[\tau,2\,\tau]$, and so on.