Hi, I am newbie to sympy, and trying to find the solution for the following integral, provided with p(x) and p(y), expecting the solution in terms of "f" <https://lh3.googleusercontent.com/-OcwzpjkMYI4/VbZtOE3GmwI/AAAAAAAAAGk/YxJhUBzb_Uo/s1600/CodeCogsEqn2.gif> <https://lh3.googleusercontent.com/-RUeCMhGP0XI/VbZtFN5r4OI/AAAAAAAAAGc/FRHf909req8/s1600/CodeCogsEqn1.gif> I have tried the following with sympy in sagemath from sympy import* from sympy import pi x, y, a = symbols('x y a') f= symbols('f ', cls=Function) integrate(integrate(Derivative(f(y),y)*(exp(-a*x**2)*cos(y)**2*sin(x)**3), (x, 0, pi)), (y, -pi, pi)) It has shown to be running for quiet long time and finally stopped without any output. Any help solving the integral will be highly appreciated. Thanks in advance Regards, Rajitha -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/031a7a41-dd2b-4b13-a971-16299d961a9c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
