Dear List, sympy can handle the integral:
In [9]: integrate(exp(-x**2),(x,-oo,oo)) Out[9]: pi**(1/2) but not this one: In [10]: integrate(exp(-(x-1)**2),(x,-oo,oo)) Out[10]: Integral(exp(-(1 - x)**2), (x, -oo, oo)) This is an easy integral, I can do it by hand, but how can I calculate it using sympy? I'm using sympy v. 0.67 Thanks, Tsviki Hirsh -- You received this message because you are subscribed to the Google Groups "sympy" 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?hl=en.
