Split it into it's real and imaginary parts maybe?
________________________________
From: sage-support@googlegroups.com <sage-support@googlegroups.com> on behalf 
of saad khalid <saad1...@gmail.com>
Sent: Thursday, February 27, 2020 2:51:07 PM
To: sage-support
Subject: Re: [sage-support] Re: Approximating integral with infinite bounds

Hi, I was trying to use the monte-carlo integration in Sage. However, I 
couldn't get it to work because there are complex numbers involved. Whenever I 
would try to integrate something like e^(i*x), the monte-carlo integrator would 
complain about it not being an integral of real numbers. Do you have any 
suggestion or reference on how to approach this?

Thanks!

On Thursday, February 27, 2020 at 11:33:52 AM UTC-5, Stephen Montgomery-Smith 
wrote:
Noting that there are lots of exp(-x^2) in the integrand, I would perform the 
numerical approximation using Monte-Carlo techniques with Gaussian 
pseudu-random numbers.
________________________________
From: sage-s...@googlegroups.com<javascript:> 
<sage-s...@googlegroups.com<javascript:>> on behalf of saad khalid 
<saad...@gmail.com<javascript:>>
Sent: Wednesday, February 26, 2020 9:41:19 PM
To: sage-support
Subject: [sage-support] Re: Approximating integral with infinite bounds

Also, I tried running the integral with finite bounds, and I get a giac error. 
Here is the code:
var('t1,t2,u,w,k')
T = 1
m = 100
E = 1
v = 0
y=1
O = 1
integral(integral(integral(
   integral(integral(
     e^(-t1^2/T^2)*e^(-t2^2/T^2)*e^(I*O*t1)*
     e^(-I*O*t2)*e^(-I*E*y^2*(1 - v)*t1^2/2)*
      e^(-I*E*y^2*(1 - v)*t2^2/2)*e^(-I*k*y*(1 - u)*t1)*
      e^(I*k*y*(1 - v)*t2)*
      e^((1 + I)*(sqrt(E)*y*w*t1 + w*k/sqrt(E)))*
      e^((1 - I)*(sqrt(E)*y*u*t2 + u*k/sqrt(E)))*
      e^(-w^2/2)*e^(-u^2/2)*w^(-1/2 + I*m^2/(2*E))*
      u^(-1/2 - I*m^2/(2*E)), (u, 0, 10)), (w, 0,
     10)), (t2, -10, 10)), (t1, -10,
   10)), (k, -10, 10))
Here is the error


RuntimeError: An error occurred running a Giac command:
INPUT:
sage20
OUTPUT:
:1: syntax error  line 1 col 31 at " in 
sage20:=int(sage16,sage17"Done",sage18w,sage190):;
 :1: syntax error  line 1 col 31 at " in 
sage20:=int(sage16,sage17"Done",sage18w,sage190):;
 "Done"




On Wednesday, February 26, 2020 at 10:21:21 PM UTC-5, saad khalid wrote:
I'm trying to compute/estimate a rather complicated looking integral. Here is 
the code I'm trying to run, with the necessary constants defined:

var('t1,t2,u,w,k')
T = 1
m = 100
E = 1
v = 0
y=1
O = 1
integral(integral(integral(
   integral(integral(
     e^(-t1^2/T^2)*e^(-t2^2/T^2)*e^(I*O*t1)*
     e^(-I*O*t2)*e^(-I*E*y^2*(1 - v)*t1^2/2)*
      e^(-I*E*y^2*(1 - v)*t2^2/2)*e^(-I*k*y*(1 - u)*t1)*
      e^(I*k*y*(1 - v)*t2)*
      e^((1 + I)*(sqrt(E)*y*w*t1 + w*k/sqrt(E)))*
      e^((1 - I)*(sqrt(E)*y*u*t2 + u*k/sqrt(E)))*
      e^(-w^2/2)*e^(-u^2/2)*w^(-1/2 + I*m^2/(2*E))*
      u^(-1/2 - I*m^2/(2*E)), (u, 0, Infinity)), (w, 0,
     Infinity)), (t2, -Infinity, Infinity)), (t1, -Infinity,
   Infinity)), (k, -Infinity, Infinity))

I haven't been able to get a result from this code, it seems to run forever. I 
was hoping to be able to estimate the integral with some numerical methods, 
however I was having trouble getting a numerical integral set up properly. My 
first question is, can someone help me set up multivariable numerical integrals 
properly. I was trying something like
numerical_integral(x*y,(x,0,1),(y,0,1))
or
numerical_integral(numerical_integral(x*y,(x,0,1)),(y,0,1))

but neither seem to be the correct format, as they both give errors.

My second question is, can anyone give some advice on how to approximate such 
an integral, where it's multivariable and the bounds are at infinity? I don't 
really know where to start.

Thanks!



--
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-s...@googlegroups.com<javascript:>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/2ee464b7-bb34-4365-8c5e-268cf5d655fb%40googlegroups.com<https://groups.google.com/d/msgid/sage-support/2ee464b7-bb34-4365-8c5e-268cf5d655fb%40googlegroups.com?utm_medium=email&utm_source=footer>.

--
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
sage-support+unsubscr...@googlegroups.com<mailto:sage-support+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/02dc46ce-545a-4ad0-849b-e8668ec6282a%40googlegroups.com<https://groups.google.com/d/msgid/sage-support/02dc46ce-545a-4ad0-849b-e8668ec6282a%40googlegroups.com?utm_medium=email&utm_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/f2c9782c3d2144ed8c9d8973f887c538%40missouri.edu.

Reply via email to