Re: Issue 1526 in sympy: simplification using trigsimp and collect

2013-01-21 Thread sympy
Updates: Status: Fixed Comment #13 on issue 1526 by smi...@gmail.com: simplification using trigsimp and collect http://code.google.com/p/sympy/issues/detail?id=1526 The OP expression now gives trigsimp(sin(x)**3+cos(x)**2*sin(x)) sin(x) -- You received this message because you

Re: Issue 1526 in sympy: simplification using trigsimp and collect

2012-11-07 Thread sympy
Updates: Labels: -CodeInDifficulty-Medium Comment #12 on issue 1526 by asmeu...@gmail.com: simplification using trigsimp and collect http://code.google.com/p/sympy/issues/detail?id=1526 The Code-In issue is to have trigsimp call factor(), or something similarly appropiate. -- You

Re: Issue 1526 in sympy: simplification using trigsimp and collect

2012-03-23 Thread sympy
Comment #9 on issue 1526 by smi...@gmail.com: simplification using trigsimp and collect http://code.google.com/p/sympy/issues/detail?id=1526 breadcrumb besides the pull requests https://github.com/sympy/sympy/pull/772 and https://github.com/sympy/sympy/pull/1063 (which are no longer

Re: Issue 1526 in sympy: simplification using trigsimp and collect

2012-03-21 Thread sympy
Updates: Labels: -smichr -NeedsReview Comment #8 on issue 1526 by smi...@gmail.com: simplification using trigsimp and collect http://code.google.com/p/sympy/issues/detail?id=1526 (No comment was entered for this change.) -- You received this message because you are subscribed to the

Re: Issue 1526 in sympy: simplification using trigsimp and collect

2011-11-28 Thread sympy
Updates: Labels: smichr NeedsReview Comment #4 on issue 1526 by smi...@gmail.com: simplification using trigsimp and collect http://code.google.com/p/sympy/issues/detail?id=1526 https://github.com/sympy/sympy/pull/772 -- You received this message because you are subscribed to the

Re: Issue 1526 in sympy: simplification using trigsimp and collect

2011-10-24 Thread sympy
Updates: Labels: CodeInDifficulty-Medium Comment #3 on issue 1526 by smi...@gmail.com: simplification using trigsimp and collect http://code.google.com/p/sympy/issues/detail?id=1526 Try terms_gcd(sin(x)**3+cos(x)**2*sin(x),expand=False) (sin(x)**2 + cos(x)**2)*sin(x) but if you

Re: Issue 1526 in sympy: simplification using trigsimp and collect

2010-07-20 Thread sympy
Updates: Summary: simplification using trigsimp and collect Comment #2 on issue 1526 by asmeurer: simplification using trigsimp and collect http://code.google.com/p/sympy/issues/detail?id=1526 The new polys factor() should do the trick for you. collect() should still work though,