Patch here: http://plaes.org/files/2009-Q1/sympy-fix-asin-integral.patch

Previously sympy failed to integrate things like this:

In [3]: integrate(1/sqrt(9 + 4*x**2), x)
Out[3]:
⌠
⎮       1
⎮ ───────────── dx
⎮    ⎽⎽⎽⎽⎽⎽⎽⎽⎽⎽
⎮   ╱        2
⎮ ╲╱  9 + 4⋅x
⌡

With patch applied:

In [1]: integrate(1/sqrt(9 + 4*x**2), x)
Out[1]:
     ⎛2⋅x⎞
asinh⎜───⎟
     ⎝ 3 ⎠
──────────
    2

This also uncovered a bug: just try to do this: integrate(1/sqrt(16 +
4*x**2), x)


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sympy-patches" group.
To post to this group, send email to sympy-patches@googlegroups.com
To unsubscribe from this group, send email to 
sympy-patches+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sympy-patches?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to