Status: Valid Owner: ---- Labels: Type-Defect Priority-Medium Simplify
New issue 3341 by [email protected]: powsimp(4*2**n) should give 2**(n + 2) http://code.google.com/p/sympy/issues/detail?id=3341 This was taken from Wester's paper (issue 694). In [12]: powsimp(2*2**n) Out[12]: n + 1 2 In [13]: powsimp(4*2**n) Out[13]: n 4⋅2 -- 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.
