Comment #1 on issue 2079 by smichr: multiple integral gives wrong result http://code.google.com/p/sympy/issues/detail?id=2079
It seems like it should have a double-integrand in y and z left. After successfully doing x it fails to do y and hence should fail z, too, and return the double integral in y and z, right?
h[2] >>> Integral(sin(x*y*z), (x, 0, pi)).doit() -cos(pi*y*z)/(y*z) + 1/(y*z) h[3] >>> integrate(_,(y,0,pi)) Integral(-cos(pi*y*z)/(y*z) + 1/(y*z), (y, 0, pi)) Should be Integral(-cos(pi*y*z)/(y*z) + 1/(y*z), (y, 0, pi), (z, 0, pi)) -- You received this message because you are subscribed to the Google Groups "sympy-issues" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy-issues?hl=en.
