How to approach the following differential equation

122 Views Asked by At

I have a differential equation of the form

$$ \frac{\mathrm{d}g}{\mathrm{d}x} = f(x) + \int_0^x g(y)f(x-y)\mathrm{d}y + \alpha g(x). $$

$f$ is a monotonous decreasing function, satisfying $\int_0^\infty f(x)\mathrm{d}x = 1$.

To solve it, I thought of getting the second derivative to handle the integral but the convolution does not let me get rid of it.

Laplace transform might work here, but I am not sure the integral term on the right side qualifies as convolution such that I can use Laplace transform of $f$.

Before trying to find the Laplace transform of $f$, which would be pretty messy, I wanted to ask if this is the best way to approach such a differential equation?

1

There are 1 best solutions below

1
On BEST ANSWER

The equation is linear in $g(x)$, and its special form does allow for a solution using the Laplace transform, using the convolution theorem and denoting

$$ (F,G)(s):=\int_0^\infty (f,g)(t)e^{-st}dt$$

we obtain by directly Laplace transforming the equation:

$$sG(s)-g(0)=F(s)+F(s)G(s)+\alpha G(s)$$

which can then be solved for $G$

$$G(s)=\frac{g(0)+F(s)}{s-F(s)-\alpha}$$

I don't think that there is a better way to analytically constructing solutions for integrodifferential equations like this, since most of them don't even have an analytical solution. Approximating with piecewise constant $f$ should be easy since the resulting equation has simple solutions in terms of exponentials, all one needs to do is to determine the constants of integration by demanding continuity of the solution at each point where $f$ has a jump discontinuity. Numerically inverting the Laplace transform is also possible for arbitrary, reasonably well behaved $f$.