Hello,

it has been a while since I last played with Sympy, but now I am back.

from sympy import Function, Integral, Symbol
x = Symbol("x")
y = Symbol("y")
f = Function("f")(x)
g = Function("g")(y)
i1 = Integral(f,x)*Integral(g,y)
i2 = Integral(f*g, x, y)

Can i1 be transformed to i2 or vice versa?
If not, what would be the right place to implement it? simplify.py or 
integral.py?

Regards,
Christian

-- 
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 sympy+unsubscr...@googlegroups.com.
To post to this group, send email to sympy@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy?hl=en-US.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to