Processing math: 100%
Ask Your Question
2

Solving numerically a multiple integral

asked 9 years ago

b0ira gravatar image

updated 9 years ago

vdelecroix gravatar image
var("r1, r2, v1, v2")
tau(r1,r2,v1,v2)=((r1-r2)-0.8)/(v1-v2)
E(r1,r2,v1,v2)= exp(-tau(r1,r2,v1,v2)/3)*1.5/tau(r1,r2,v1,v2)^2
f(r1,r2,v1,v2)=exp(-(v1^2+v2^2)/2)*exp(-E(r1,r2,v1,v2)/2)

integral(integral(integral(integral(f(r1,r2,v1,v2),r1,0,10),r2,0,10),v1,-inf,inf),v2,-inf,inf)

RuntimeError: ECL says: In function GCD, the value of the second argument is 1.0 which is not of the expected type INTEGER

Could anyone help me please?

Preview: (hide)

Comments

Most likely related to http://trac.sagemath.org/ticket/14821 and keepfloat:true in Maxima

kcrisman gravatar imagekcrisman ( 9 years ago )

1 Answer

Sort by » oldest newest most voted
1

answered 8 years ago

mforets gravatar image

Have you tried scipy's nquad function? I think that in your problem special care has to be taken in the line v1=v2, but it can be handled with the opts parameter.

Preview: (hide)
link

Comments

Can you give specific syntax? (Maxima and GSL both have numerical integration that Sage syntax automatically supports, you could give all three!) Not sure how these support infinite bounds though.

kcrisman gravatar imagekcrisman ( 8 years ago )

The infinite bounds can be passed as [-np.inf, np.inf]. However I didn't manage to obtain an answer for OP's integral -- it takes ages to converge. Perhaps a Monte Carlo integration is more reliable in this case (see mcint).

mforets gravatar imagemforets ( 8 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 9 years ago

Seen: 398 times

Last updated: Apr 03 '16