Comment #6 on issue 3109 by smi...@gmail.com: sqrt(exp(4*a)) != exp(2*a)
http://code.google.com/p/sympy/issues/detail?id=3109

Mul._eval_power also has an error that leads to the following failure:

    >>> e=-sqrt(3)*(1+2*I)
    >>> sqrt(e.n()).n()
    1.03463339851334 - 1.6740720046904*I
    >>> sqrt(e).n()
    -1.03463339851334 + 1.6740720046904*I
    >>> sqrt(e)
    3**(1/4)*I*sqrt(1 + 2*I)

The negative sign should have been left inside. This is also fixed in https://github.com/sympy/sympy/pull/1105

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To post to this group, send email to sympy-issues@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sympy-issues?hl=en.

Reply via email to