Status: Valid
Owner: ----
Labels: Type-Defect Priority-Medium NonCommutative Polynomial
New issue 3370 by [email protected]: Order() does not work with
noncommutative symbol
http://code.google.com/p/sympy/issues/detail?id=3370
It is currently not possible to mix Order(x) with expressions containing a
noncommutative symbol:
In [1]: M=Symbol('M', commutative=False)
In [2]: 1+M*x+Order(x**2)
Out[2]: 1 + x*M + O(x**2)
In [3]: _*M
Out[3]: (1 + x*M + O(x**2))*M
In [4]: expand(_)
results in PolynomialError: non-commutative expressions are not supported
--
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.