Status: Accepted Owner: smichr Labels: Type-Defect Priority-Medium
New issue 2124 by smichr: cos(x).series(x) gives same result as cos(x).series(x, 1)
http://code.google.com/p/sympy/issues/detail?id=2124 h[1] >>> cos(x).series(x) 1 - x**2/2 + x**4/24 + O(x**6) h[2] >>> cos(x).series(x, 1) 1 - x**2/2 + x**4/24 + O(x**6) After the patch that I am working on this becomes h[13] >>> cos(x).series(x, 1) (1 - x)*sin(1) - (1 - x)**2*cos(1)/2 - (1 - x)**3*sin(1)/6 + (1 - x)**4*cos(1)/24 + (1 - x)**5*sin(1)/120 + cos(1) + O(x**6) -- You received this message because you are subscribed to the Google Groups "sympy-issues" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy-issues?hl=en.
