Is it possible to say something about the equation $$\dot{y}(t)=a(t)y(t)+b(t)y(t-T)$$ with $T>0$ a real constant?
Can we find a solution, even numerically? I don't have any clue about it.
Is it possible to say something about the equation $$\dot{y}(t)=a(t)y(t)+b(t)y(t-T)$$ with $T>0$ a real constant?
Can we find a solution, even numerically? I don't have any clue about it.
Copyright © 2021 JogjaFile Inc.
Expanding upon A rural readers comment. A delay differential equation is a differential equation where the argument is delayed. This can be accounted for by numerically implementing a history function $h(p, t)$ which uses interpolations throughout the solution's history to form a continuous extension of the solver's past.
In the following I have written a solution in Julia for some arbitrary functions $a(t)$ and $b(t)$.
You can change the initial conditions and the solver, for instance
Rosenbrock23orAutoVern7.You can read more on Delay Differential Equations here