Re: [sympy] Multivariate partial fractions

2012-03-14 Thread Aaron Meurer
On Wed, Mar 14, 2012 at 2:22 PM, john.hoebing wrote: > Here's a slight variation on the sympy tutorial examples that gives an > error: > > In [1]: f = 1/x + 1/y + 1/z > > In [2]: f.together() > Out[2]: > x⋅y + x⋅z + y⋅z > ─── >     x⋅y⋅z > > In [3]: f.together().apart() > -

[sympy] Multivariate partial fractions

2012-03-14 Thread john.hoebing
Here's a slight variation on the sympy tutorial examples that gives an error: In [1]: f = 1/x + 1/y + 1/z In [2]: f.together() Out[2]: x⋅y + x⋅z + y⋅z ─── x⋅y⋅z In [3]: f.together().apart() --- NotImplemente