Re: Issue 588 in sympy: simplify should be better at detecting repeated factors

2012-05-22 Thread sympy
Updates: Status: Fixed Comment #11 on issue 588 by ronan.l...@gmail.com: simplify should be better at detecting repeated factors http://code.google.com/p/sympy/issues/detail?id=588 It seems that this has been fixed. -- You received this message because you are subscribed to the

Re: Issue 588 in sympy: simplify should be better at detecting repeated factors

2011-04-28 Thread sympy
Comment #10 on issue 588 by smi...@gmail.com: simplify should be better at detecting repeated factors http://code.google.com/p/sympy/issues/detail?id=588 This now gives h[3] integrate(x**2 * exp(x) * cos(x), x) exp(x)*sin(x)/2 + x**2*exp(x)*sin(x)/2 - x*exp(x)*sin(x) -

Re: Issue 588 in sympy: simplify should be better at detecting repeated factors

2011-01-06 Thread sympy
Comment #8 on issue 588 by mattpap: simplify should be better at detecting repeated factors http://code.google.com/p/sympy/issues/detail?id=588 We should rewrite simplify() with factor() and other recently improved function. However, before we do this, we should have good expression

Re: Issue 588 in sympy: simplify should be better at detecting repeated factors

2011-01-06 Thread sympy
Updates: Labels: -Milestone-Release0.7.0 Comment #9 on issue 588 by asmeurer: simplify should be better at detecting repeated factors http://code.google.com/p/sympy/issues/detail?id=588 (No comment was entered for this change.) -- You received this message because you are subscribed

Re: Issue 588 in sympy: simplify should be better at detecting repeated factors

2011-01-05 Thread sympy
Comment #7 on issue 588 by asmeurer: simplify should be better at detecting repeated factors http://code.google.com/p/sympy/issues/detail?id=588 What should we do about this? -- You received this message because you are subscribed to the Google Groups sympy-issues group. To post to this

Re: Issue 588 in sympy: simplify should be better at detecting repeated factors

2010-04-11 Thread sympy
Comment #6 on issue 588 by smichr: simplify should be better at detecting repeated factors http://code.google.com/p/sympy/issues/detail?id=588 If you are just pulling out a visible term (not a hidden factor) then consider using terms_gcd: terms_gcd(ans) (-cos(x) + x**2*cos(x) +

Re: Issue 588 in sympy: simplify should be better at detecting repeated factors

2010-03-17 Thread sympy
Comment #5 on issue 588 by asmeurer: simplify should be better at detecting repeated factors http://code.google.com/p/sympy/issues/detail?id=588 This is fixed in the new polys, but it needs to be tested: In [1]: e = integrate(x**2 * exp(x) * cos(x), x) In [2]: e Out[2]: x 2 x