Updates:
Summary: collect is not nc-aware (was: wrong answer from simplifying
non-commutative symbols)
Comment #11 on issue 642 by [email protected]: collect is not nc-aware (was:
wrong answer from simplifying non-commutative symbols)
http://code.google.com/p/sympy/issues/detail?id=642
factor is now nc-aware; collect has not been fixed:
>>> e=(A*B-B*A)
>>> factor(e)
A*B - B*A
>>> simplify(e)
A*B - B*A
>>> radsimp(e)
A*B - B*A
>>> collect(e, A)
0
--
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.