Issue 1899 in sympy: factor(3 + x - x*(1 + x) + x**2) != 3

2010-04-13 Thread sympy
Status: Accepted Owner: smichr Labels: Type-Defect Priority-Medium New issue 1899 by smichr: factor(3 + x - x*(1 + x) + x**2) != 3 http://code.google.com/p/sympy/issues/detail?id=1899 factor(3 + x - x*(1 + x) + x**2), it seems, should reduce to 3. Instead (in polys8) it just returns the same exp

Re: Issue 1899 in sympy: factor(3 + x - x*(1 + x) + x**2) != 3

2010-04-13 Thread sympy
Updates: Cc: mattpap Labels: Polynomial Comment #1 on issue 1899 by asmeurer: factor(3 + x - x*(1 + x) + x**2) != 3 http://code.google.com/p/sympy/issues/detail?id=1899 Well, factor() *is* the opposite of expand(), which does this fine. So I guess the question is: Should factor(

Re: Issue 1899 in sympy: factor(3 + x - x*(1 + x) + x**2) != 3

2010-04-13 Thread sympy
Updates: Status: Started Owner: mattpap Cc: -mattpap Labels: Milestone-Release0.7.0 Comment #2 on issue 1899 by mattpap: factor(3 + x - x*(1 + x) + x**2) != 3 http://code.google.com/p/sympy/issues/detail?id=1899 This behavior of factor() is just a simple bug. In a

Re: Issue 1899 in sympy: factor(3 + x - x*(1 + x) + x**2) != 3

2010-08-06 Thread sympy
Updates: Labels: NeedsReview Comment #3 on issue 1899 by mattpap: factor(3 + x - x*(1 + x) + x**2) != 3 http://code.google.com/p/sympy/issues/detail?id=1899 This was fixed on polys11 in commit 3b63cedf3aba15d284430dc817391e0a45f8c951. -- You received this message because you are subs

Re: Issue 1899 in sympy: factor(3 + x - x*(1 + x) + x**2) != 3

2010-09-01 Thread sympy
Updates: Labels: mattpap Comment #4 on issue 1899 by asmeurer: factor(3 + x - x*(1 + x) + x**2) != 3 http://code.google.com/p/sympy/issues/detail?id=1899 (No comment was entered for this change.) -- You received this message because you are subscribed to the Google Groups "sympy-issues

Re: Issue 1899 in sympy: factor(3 + x - x*(1 + x) + x**2) != 3

2011-04-29 Thread sympy
Updates: Status: Fixed Labels: -NeedsReview PassedReview Comment #5 on issue 1899 by matt...@gmail.com: factor(3 + x - x*(1 + x) + x**2) != 3 http://code.google.com/p/sympy/issues/detail?id=1899 Uniform handling of arguments like `3 + x - x*(1 + x) + x**2` was implemented ac