To build a complex polynomial
For example I have this polynomiyal:
p=(z-2*I)*(z+1*I)
I want sage show me someting like:
z^2-z*(1*I)-2
It doesn't mind the number of roots.
Is that what you want?
sage: var('z')
sage: p=(z-2*I)*(z+1*I)
sage: p.expand()
z^2 - I*z + 2
Asked: 2016-01-17 20:22:11 +0100
Seen: 309 times
Last updated: Jan 17 '16
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.