We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var('c', domain='complex') var('x', domain='real') C = c * exp(-x^2) print (C) c*e^(-x^2) print (C.imag()) e^(-x^2)*imag_part(c) print (C.imag().simplify_full()) 0
Related to two-year old bug #6862. It seems, variables declared as 'complex', are assumed real in maxima. This is fixed by using sage's assume command
assume(c, 'complex') print (C.imag().simplify_full())
gives the correct result.
demonstration notebook: http://demo.sagenb.org/home/pub/178/
Component: symbolics
Keywords: maxima
Reviewer: Burcin Erocal
Issue created by migration from https://trac.sagemath.org/ticket/11656
The text was updated successfully, but these errors were encountered:
Changed keywords from none to maxima
Sorry, something went wrong.
As stated in the description, this is a duplicate of #6862.
burcin
No branches or pull requests
Related to two-year old bug #6862. It seems, variables declared as 'complex', are assumed real in maxima. This is fixed by using sage's assume command
gives the correct result.
demonstration notebook: http://demo.sagenb.org/home/pub/178/
Component: symbolics
Keywords: maxima
Reviewer: Burcin Erocal
Issue created by migration from https://trac.sagemath.org/ticket/11656
The text was updated successfully, but these errors were encountered: