Using solve with a complex base ring
guest · Mon Jan 08, 2018 5:11 pm
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);
ring r = complex, (x,y), dp;
ideal I = ((x-5)*y+16)/32, y^2-x^3-5*x-10;
solve(I);