Re: Issue 1850 in sympy: solve_linear_system contains duplicate rref algorithm

2011-03-28 Thread sympy
Comment #4 on issue 1850 by ylfchild: solve_linear_system contains duplicate rref algorithm http://code.google.com/p/sympy/issues/detail?id=1850 I'm looking at the two functions and, as I understand them so far, they are using almost identical algorithms. The largest difference that I see

Re: Issue 2233 in sympy: Triangle errors

2011-03-28 Thread sympy
Comment #12 on issue 2233 by smi...@gmail.com: Triangle errors http://code.google.com/p/sympy/issues/detail?id=2233 I've updated the geometry branch by cleaning up the intersections method and making the encloses method (previously my inside method) more robust. It still needs good testing.

Re: Issue 2200 in sympy: limit(sin(x),x,oo) should raise an error

2011-03-28 Thread sympy
Comment #3 on issue 2200 by ness...@googlemail.com: limit(sin(x),x,oo) should raise an error http://code.google.com/p/sympy/issues/detail?id=2200 We need a general way to describe and test for singularities. In particular Wild('a')*oo should be recognisable as usually singular. This will

Re: Issue 360 in sympy: Arithmetic with complex infinity

2011-03-28 Thread sympy
Comment #1 on issue 360 by ness...@googlemail.com: Arithmetic with complex infinity http://code.google.com/p/sympy/issues/detail?id=360 I sent out a pull request for fix of this, see: https://github.com/sympy/sympy/pull/173 This should be considered a temporary solution, to be replaced

Re: Issue 2237 in sympy: FockState wraps its arguments with tuple()

2011-03-28 Thread sympy
Updates: Labels: -NeedsReview PassedReview Comment #12 on issue 2237 by nicolas@gmail.com: FockState wraps its arguments with tuple() http://code.google.com/p/sympy/issues/detail?id=2237 It's ok for me. I'll push it tomorrow if no one objects to in the while. -- You received

Re: Issue 905 in sympy: series error: maximum recursion depth exceeded

2011-03-28 Thread sympy
Comment #11 on issue 905 by asmeurer: series error: maximum recursion depth exceeded http://code.google.com/p/sympy/issues/detail?id=905 What exactly do you need comment on? -- You received this message because you are subscribed to the Google Groups sympy-issues group. To post to this

Issue 2243 in sympy: Added asin specific values [PATCH]

2011-03-28 Thread sympy
Status: Accepted Owner: asmeurer Labels: Type-Defect Priority-Medium NeedsReview jpmccaffery New issue 2243 by asmeurer: Added asin specific values [PATCH] http://code.google.com/p/sympy/issues/detail?id=2243 Just linking to this patch from the patches list so we don't forget about it.

Re: Issue 360 in sympy: Arithmetic with complex infinity

2011-03-28 Thread sympy
Updates: Status: Accepted Labels: NeedsReview ness987 Comment #2 on issue 360 by asmeurer: Arithmetic with complex infinity http://code.google.com/p/sympy/issues/detail?id=360 (No comment was entered for this change.) -- You received this message because you are subscribed to

Re: Issue 360 in sympy: Arithmetic with complex infinity

2011-03-28 Thread sympy
Updates: Labels: -NeedsReview NeedsBetterPatch Comment #3 on issue 360 by pr...@goodok.ru: Arithmetic with complex infinity http://code.google.com/p/sympy/issues/detail?id=360 Add test and implementation: zoo + I = zoo zoo*I = zoo -- You received this message because you are

Re: Issue 2241 in sympy: Wrong convergence check for evalf() of hypergeometric sums

2011-03-28 Thread sympy
Comment #4 on issue 2241 by drunkiri...@gmail.com: Wrong convergence check for evalf() of hypergeometric sums http://code.google.com/p/sympy/issues/detail?id=2241 I've made the suggested fix and made two tests (see pull request). Let me know if this works, preferably on IRC (my handle is

Re: Issue 2241 in sympy: Wrong convergence check for evalf() of hypergeometric sums

2011-03-28 Thread sympy
Updates: Labels: NeedsReview drunkirishfish Comment #5 on issue 2241 by asmeurer: Wrong convergence check for evalf() of hypergeometric sums http://code.google.com/p/sympy/issues/detail?id=2241 In the future, link to the actual pull request. https://github.com/sympy/sympy/pull/174

Issue 2244 in sympy: N(Matrix) does not work (but Matrix.evalf() does)

2011-03-28 Thread sympy
Status: Accepted Owner: asmeurer Labels: Type-Defect Priority-Medium Matrices New issue 2244 by asmeurer: N(Matrix) does not work (but Matrix.evalf() does) http://code.google.com/p/sympy/issues/detail?id=2244 In [14]: A.evalf() Out[14]: ⎡ -0.25-0.433012701892219⎤ ⎢

Re: Issue 821 in sympy: multiple arguments for max and other improvements

2011-03-28 Thread sympy
Updates: Labels: NeedsReview Comment #22 on issue 821 by pr...@goodok.ru: multiple arguments for max and other improvements http://code.google.com/p/sympy/issues/detail?id=821 Implementation of this behaviour is now here: https://github.com/sympy/sympy/pull/176 Please call attention

Issue 2245 in sympy: assumption while canceling the polynomials

2011-03-28 Thread sympy
Status: New Owner: pr...@goodok.ru Labels: Type-Defect Priority-Medium Polynomial Simplify New issue 2245 by pr...@goodok.ru: assumption while canceling the polynomials http://code.google.com/p/sympy/issues/detail?id=2245 Consider simplification: a = (x**2 - 3*x + 2)/(x - 1)

Re: Issue 2245 in sympy: assumption while canceling the polynomials

2011-03-28 Thread sympy
Comment #3 on issue 2245 by matt...@gmail.com: assumption while canceling the polynomials http://code.google.com/p/sympy/issues/detail?id=2245 This cases() function is a very nice idea. As to cancel(), this this a common design pattern to make a function do one thing at time. cancel() can

Re: Issue 2245 in sympy: assumption while canceling the polynomials

2011-03-28 Thread sympy
Comment #1 on issue 2245 by asmeurer: assumption while canceling the polynomials http://code.google.com/p/sympy/issues/detail?id=2245 But the whole point of cancel is to cancel out common polynomial factors. Otherwise, it is useless. Perhaps the functionality you mention could be

Re: Issue 2245 in sympy: assumption while canceling the polynomials

2011-03-28 Thread sympy
Comment #5 on issue 2245 by pr...@goodok.ru: assumption while canceling the polynomials http://code.google.com/p/sympy/issues/detail?id=2245 The example of the last, when the limit of series's terms is analyzing. e.g. the n-th derivatives of `acos(1-x*x)` at point `x==1` yield ratios of

Re: Issue 2245 in sympy: assumption while canceling the polynomials

2011-03-28 Thread sympy
Comment #6 on issue 2245 by matt...@gmail.com: assumption while canceling the polynomials http://code.google.com/p/sympy/issues/detail?id=2245 On the other hand simpify() should go the other direction and be feature full. This is not the case currently as simplify() == cancel() + eps. I

Re: Issue 905 in sympy: series error: maximum recursion depth exceeded

2011-03-28 Thread sympy
Comment #12 on issue 905 by pr...@goodok.ru: series error: maximum recursion depth exceeded http://code.google.com/p/sympy/issues/detail?id=905 What exactly do you need comment on? First of all, is all ok with this issue. In particular, have anyone objections or not about this lines: