Updates:
Status: Fixed
Labels: -NeedsReview PassedReview
Comment #9 on issue 1355 by [email protected]:
factor(expand((sin(x)+sin(y))*(cos(x)+cos(y)))) fails
http://code.google.com/p/sympy/issues/detail?id=1355
This is really a duplicate, works now, e.g.:
In [1]: e = (sin(x)+sin(y))*(cos(x)+cos(y))
In [2]: expand(e)
Out[2]: cos(x)⋅sin(x) + cos(x)⋅sin(y) + cos(y)⋅sin(x) + cos(y)⋅sin(y)
In [3]: factor(_)
Out[3]: (cos(x) + cos(y))⋅(sin(x) + sin(y))
--
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.