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)/24192-107*x**(17/2)/29030400 + O(x**7) =
sqrt(x)-x**(5/2)/12+x**(9/2)/1440-x**(13/2)/24192 + O(x**7)
```

which is the correct result for `sqrt(sin(x)).series(x, 0, 7)`





--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To post to this group, send email to sympy-issues@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sympy-issues?hl=en.

Reply via email to