Comment #1 on issue 3341 by [email protected]: powsimp(4*2**n) should give 2**(n + 2)
http://code.google.com/p/sympy/issues/detail?id=3341
powsimp(16*2**m*8**n)
16*2**m*8**n Here's another problem
powdenest(_)
16*2**m*2**(3*n)
powsimp(_)
16*2**m*8**n powsimp should have given 16*2**(m + 3*n) or 2**(m + 3*n + 4) -- 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.
