Hi,
I have just started using Sympy and find it to be terrific so far, so
thanks for all the work you've done in creating it!
I'm having some problems getting series expansions of some functions,
sympy hangs forever (or at least a few hours) for some functions. I've
reduced the problem to the simplest case that causes this, and the
code appears below. Am I doing something wrong here?
> from sympy import *
> x,a,b = symbols('x,a,b')
> f = 1/(1+a*x)
> print f.series(x)
This works fine and prints the series to O(x**6) as expected
> f = 1/(1+(a+b)*x)
> print f.series(x)
This just hangs and doesn't print anything!
I am running the latest version of sympy in the git repository.
Thanks for any help!
Andrew
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---