Re: Issue 3552 in sympy: Expression with square root doesn't simplify well

2013-04-20 Thread sympy
Updates: Status: Fixed Comment #5 on issue 3552 by smi...@gmail.com: Expression with square root doesn't simplify well http://code.google.com/p/sympy/issues/detail?id=3552 assuming we don't want full radsimp in simplify, I am closing this since radsimp now simplifies the OP

Re: Issue 3552 in sympy: Expression with square root doesn't simplify well

2013-04-19 Thread sympy
Updates: Labels: NeedsReview smichr Comment #4 on issue 3552 by smi...@gmail.com: Expression with square root doesn't simplify well http://code.google.com/p/sympy/issues/detail?id=3552 In PR 2023: radsimp(eq) 1 + sqrt(2 + sqrt(5))/2 + sqrt(5)*sqrt(2 + sqrt(5))/2 All long time ago

Re: Issue 3552 in sympy: Expression with square root doesn't simplify well

2013-04-16 Thread sympy
Comment #3 on issue 3552 by smi...@gmail.com: Expression with square root doesn't simplify well http://code.google.com/p/sympy/issues/detail?id=3552 see discussion on https://github.com/sympy/sympy/pull/2006, too, regarding the use of minpoly and issue 2985. -- You received this message

Issue 3552 in sympy: Expression with square root doesn't simplify well

2012-12-08 Thread sympy
Status: Valid Owner: Labels: Type-Defect Priority-Medium Simplify New issue 3552 by ronan.l...@gmail.com: Expression with square root doesn't simplify well http://code.google.com/p/sympy/issues/detail?id=3552 Consider the following expression: In [39]: y = 1/(x-1) + 1/(x+1) + x + 1 In

Re: Issue 3552 in sympy: Expression with square root doesn't simplify well

2012-12-08 Thread sympy
Comment #1 on issue 3552 by asmeu...@gmail.com: Expression with square root doesn't simplify well http://code.google.com/p/sympy/issues/detail?id=3552 Try simplify(radsimp(value)). Clearly simplify() should include radsimp(). -- You received this message because you are subscribed to the

Re: Issue 3552 in sympy: Expression with square root doesn't simplify well

2012-12-08 Thread sympy
Comment #2 on issue 3552 by asmeu...@gmail.com: Expression with square root doesn't simplify well http://code.google.com/p/sympy/issues/detail?id=3552 Actually, there's an even simpler version: In [12]: minpoly(value) Out[12]: 4 3 2 x - 4⋅x - 5⋅x + 18⋅x - 11 In [13]: