Status: Valid
Owner: ----
Labels: Type-Defect Priority-Medium NonCommutative Simplify

New issue 3369 by [email protected]: Simple trigonometric simplification and noncommutative symbol
http://code.google.com/p/sympy/issues/detail?id=3369

Simple trigonometric simplifications are not done when the expressions contain a noncommutative symbol.

In [1]: M=Symbol('M', commutative=False)

Works fine:

In [2]: simplify(x*cos(y)**2+x*sin(y)**2)

Out[2]: x

Needs to be improved:

In [3]: simplify(M*cos(y)**2+M*sin(y)**2)

Out[3]: sin(y)**2*M + cos(y)**2*M


--
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.

Reply via email to