#2071: SymbolicExpression conjugate() method assumes variables are real
----------------------+-----------------------------------------------------
Reporter: cwitty | Owner: gfurnish
Type: defect | Status: assigned
Priority: major | Milestone: sage-3.2.1
Component: calculus | Resolution:
Keywords: |
----------------------+-----------------------------------------------------
Comment (by mhansen):
This could be handled using Maxima's declare facility:
{{{
sage: sage.calculus.calculus.maxima.eval('declare(x, complex)')
'done'
sage: x.conjugate()
conjugate(x)
}}}
This also fixed by Pynac:
{{{
sage: x = var('x', ns=1)
sage: x
x
sage: x.conjugate()
conjugate(x)
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/2071#comment:2>
Sage <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of
Reinventing the Wheel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sage-trac" 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/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---