Status: Accepted Owner: ---- Labels: Type-Defect Priority-Medium
New issue 2996 by [email protected]: collect doesn't collect power with numerical base
http://code.google.com/p/sympy/issues/detail?id=2996
collect(a*y**(2*x)+b*y**(2*x),y**(x))
(a + b)*(y**2)**x
collect(a*2**(2*x)+b*2**(2*x),2**(x))
2**(2*x)*a + 2**(2*x)*b I would expect the second case to be (a + b)*2**(2*x) -- 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.
