I define the simple function:
Simp[h_] := Integrate[h[x] p[x], {x, -∞, ∞}]
where the function p[x] is continuous, but I want to define later, not now.
I want to evaluate Simp[h] when h is, say, $1 + \delta$. This ought to be easy, but how do I get Mathematica to do the obvious? My work around is to break the evaluation into two parts and add the results myself. However, in my real problem, Simp[h] appears in several places inside a nonlinear functional. Now things get tedious. It doesn't help that in my real problem the DiracDelta ($\delta$) is a weighted train of unequally spaced DiracDeltas. The DiracComb is useless for me.
Simp[h]is not a usual function, but a functional. If you wantSimp[h]to handle the $\delta$-distribution, then this is a functional on a complex space. Ask it at a math forum, say MSE. – user64494 Oct 21 '22 at 03:48Convolve. – chuy Oct 21 '22 at 19:38