Status: Accepted Owner: smichr Labels: Type-Defect Priority-Medium
New issue 2038 by smichr: powsimp breaks power rules http://code.google.com/p/sympy/issues/detail?id=2038
(x**(2*y))**3
(x**(2*y))**3
powsimp(_)
(x**(2*y))**3 <--ok, we didn't use the deep flag
powsimp(_,deep=1)
((x**2)**y)**3 This should have been (x**y)**6 This is fixed in my t2 branch. -- 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.
