Group Abstract Group Abstract

Message Boards Message Boards

0
|
195 Views
|
1 Reply
|
1 Total Like
View groups...
Share
Share this post:

Unexpected result in a simple Integral

Posted 21 days ago

I entered

Integral[Exp[I x t - a (u-x) ]  , {x,-Infinity,  u}]  // Simplify

%% (Where I stands for the imaginary unit i) And got the correct answer but with a weird condition:

E^(I t u)/(a+I t) if Re(a)>Im(t)\[And]Re(a (u+1000345))>=1000345 Im(t)\[And]Re(a (u+1000503))>=1000503 Im(t) 

Looks as if infinity equals the number 1000345 ?

The purpose here was to find the characteristic function of a Laplace distribution.

POSTED BY: Reiner Wilhelms

I suppose it is a condition for convergence of the integral. A simple example of divergence:

With[{t = 0, u = 0, a = 0},
 Integrate[Exp[I x t - a (u - x)], {x, -Infinity, u}]]

We may find more examples this way:

sol = FindInstance[Not[Re[a] > Im[t] &&
    Re[a (1000076 + u)] >= 1000076 Im[t] &&
    Re[a (1000303 + u)] >= 1000303 Im[t]],
  {t, u, a}, 2]
Exp[I x t - a (u - x)] /. sol[[1]] // ComplexExpand
POSTED BY: Gianluca Gorni
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard