In the manual, it says that the
Code:
solve
function assumes that the base ring is either complex or without parameters. However, when I try to use the
Code:
solve
function with a complex base ring, I get the error that "basering has parameters". Should I be defining my base ring differently, or does
Code:
solve
not work with a complex base ring?
Code:
LIB "solve.lib";
ring r = complex, (x,y), dp;
ideal I = ((x-5)*y+16)/32, y^2-x^3-5*x-10;
solve(I);
In the manual, it says that the [code]solve[/code] function assumes that the base ring is either complex or without parameters. However, when I try to use the [code]solve[/code] function with a complex base ring, I get the error that "basering has parameters". Should I be defining my base ring differently, or does [code]solve[/code] not work with a complex base ring?
[code]
LIB "solve.lib";
ring r = complex, (x,y), dp;
ideal I = ((x-5)*y+16)/32, y^2-x^3-5*x-10;
solve(I);
[/code]