Integrate[DiracDelta'[y - z] DiracDelta[x - z], {z, -Infinity, Infinity},
Assumptions -> x \[Element] Reals && x \[Element] Reals]
Tell me more
×
Mathematica Stack Exchange is a question and answer site for
users of Mathematica. It's 100% free, no registration required.
|
|
||||
| show 1 more comment |
|
I'll go with the same interpretation as @chris (and derivative wrt
Another approach is the one suggested by @chris : we can consider $\delta(x) = \lim_{\epsilon \rightarrow 0} \frac{1}{\sqrt{2 \pi \epsilon^2}} \ \ \exp(-\frac{x^2}{2 \epsilon^2}) $
In the limit $\epsilon \rightarrow 0$ this result matches the previous one. It is mentioned in the documentation that
|
|||||||||||
|
|
You can define
and check that
returns 0 |
|||
|
|
Integrate[ DiracDelta[y - z] DiracDelta[x - z], {z, -Infinity, Infinity}]– chris Oct 13 '12 at 13:56Integrate[DiracDelta'[y - z] DiracDelta[x - z], {z, -Infinity, Infinity}]but I am guessing... – chris Oct 13 '12 at 15:02