Comment #4 on issue 1296 by [email protected]: some problem with notcommutative algebra
http://code.google.com/p/sympy/issues/detail?id=1296

I get
    >>> import sympy
    >>> b,c=sympy.symbols("b,c",commutative=None)
    >>> (b*c**2).conjugate()
    conjugate(b)*conjugate(c)**2
    >>> (b*c).conjugate()
    conjugate(b)*conjugate(c)
    >>> a,b=sympy.symbols("a,b",commutative=None)
    >>> (a*b).conjugate() - (b*a).conjugate()
    conjugate(a)*conjugate(b) - conjugate(b)*conjugate(a)
    >>> (a*b-b*a).conjugate()
    conjugate(a)*conjugate(b) - conjugate(b)*conjugate(a)

If you confirm this, go ahead and close.

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