Re: Issue 1355 in sympy: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y)))) fails

2011-04-29 Thread sympy
Updates: Status: Fixed Labels: -NeedsReview PassedReview Comment #9 on issue 1355 by matt...@gmail.com: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y fails http://code.google.com/p/sympy/issues/detail?id=1355 This is really a duplicate, works now, e.g.: In [1]: e = (sin(x)+

Re: Issue 1355 in sympy: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y)))) fails

2010-09-01 Thread sympy
Updates: Labels: mattpap Comment #8 on issue 1355 by asmeurer: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y fails http://code.google.com/p/sympy/issues/detail?id=1355 (No comment was entered for this change.) -- You received this message because you are subscribed to the Google Gr

Re: Issue 1355 in sympy: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y)))) fails

2010-03-27 Thread sympy
Updates: Status: Started Labels: NeedsReview Comment #7 on issue 1355 by ronan.l...@gmail.com: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y fails http://code.google.com/p/sympy/issues/detail?id=1355 This is not in yet. -- You received this message because you are listed in

Re: Issue 1355 in sympy: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y)))) fails

2010-03-20 Thread sympy
Updates: Status: Fixed Comment #6 on issue 1355 by mattpap: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y fails http://code.google.com/p/sympy/issues/detail?id=1355 Added test in polys8 branch. -- You received this message because you are listed in the owner or CC fields of this is

Re: Issue 1355 in sympy: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y)))) fails

2010-03-17 Thread sympy
Updates: Labels: EasyToFix Comment #5 on issue 1355 by asmeurer: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y fails http://code.google.com/p/sympy/issues/detail?id=1355 Of course, it works in the new polys: In [3]: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y Out[3]: (cos(x) +

Re: Issue 1355 in sympy: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y)))) fails

2009-12-07 Thread sympy
Updates: Blockedon: 1598 Comment #4 on issue 1355 by asmeurer: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y fails http://code.google.com/p/sympy/issues/detail?id=1355 (No comment was entered for this change.) -- You received this message because you are listed in the owner or CC fie

Issue 1355 in sympy: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y)))) fails

2009-03-29 Thread codesite-noreply
Comment #2 on issue 1355 by ondrej.certik: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y fails http://code.google.com/p/sympy/issues/detail?id=1355 I made a mistake. Sage can do it: sage: e = (sin(x)+sin(y))*(cos(x)+cos(y)) sage: factor(expand(e)) (cos(y) + cos(x))*(sin(y) + sin(x)) sage: e

Issue 1355 in sympy: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y)))) fails

2009-03-29 Thread codesite-noreply
Comment #1 on issue 1355 by ondrej.certik: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y fails http://code.google.com/p/sympy/issues/detail?id=1355 Sage also can't do it, but at least it doesn't raise an exception: vasage: var("x y") (x, y) sage: e = (sin(x)+sin(y)*(cos(x)+cos(y))) sage: e

Issue 1355 in sympy: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y)))) fails

2009-03-29 Thread codesite-noreply
Status: Accepted Owner: Labels: Type-Defect Priority-Medium New issue 1355 by ondrej.certik: factor(expand((sin(x)+sin(y))*(cos(x)+cos(y fails http://code.google.com/p/sympy/issues/detail?id=1355 In [2]: e = (sin(x)+sin(y)*(cos(x)+cos(y))) In [3]: e Out[3]: (cos(x) + cos(y))â‹…sin(y) +