Re: Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2013-03-27 Thread sympy
Updates: Status: Fixed Comment #8 on issue 2969 by smi...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 Now, sqrt(sin(x)).series(x, 0, 9) sqrt(x) - x**(5/2)/12 + x**(9/2)/1440 - x**(13/2)/24192 - 67*x**(17/2)/29030400 + O(x**

Re: Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2013-03-04 Thread sympy
Comment #7 on issue 2969 by skirpic...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 https://github.com/sympy/sympy/pull/1863 -- You received this message because this project is configured to send all issue notifications to this addr

Re: Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2013-02-20 Thread sympy
Comment #6 on issue 2969 by asmeu...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 But not necessarily the same bug. When one is fixed, let's be sure to check the other. -- You received this message because this project is configured

Re: Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2013-02-20 Thread sympy
Comment #5 on issue 2969 by skirpic...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 This looks same: http://code.google.com/p/sympy/issues/detail?id=3626 -- You received this message because this project is configured to send all is

Re: Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2012-02-05 Thread sympy
Updates: Status: Accepted Comment #3 on issue 2969 by asmeu...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 Oh I see it now, the x**(13/2) term is wrong. I doubt this is an order issue, per se. It's probably just not computi

Re: Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2012-01-07 Thread sympy
Comment #2 on issue 2969 by mario.pe...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 p + O(x**7) means that p is equivalent to the sum of its monomials of order less than x**7, so that ``` sqrt(x)-x**(5/2)/12+x**(9/2)/1440-x**(13/2)

Re: Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2012-01-06 Thread sympy
Updates: Labels: Series Comment #1 on issue 2969 by asmeu...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 I guess I misunderstand orders. Is it not good enough that 7 is greater than 13/2 and less than 17/2? -- You received

Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2012-01-06 Thread sympy
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 2969 by mario.pe...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 The last order in the following series expansions are wrong using the last version of the master bran