Hello,
I am trying t use Singular 3.0.2 to symbolically solve
a polynomial system of equations with parameters.
As a guide, I used the following example:
doc/examples/Solving_systems_of_polynomial_equations.sing
Unfortunately, the last call (triangMH) of the program given below
never ends.
Any help or suggestion would be greatly appreciated
Sinisa
//I want to solve for l1,l2,l3,l4 in terms of a,b,c,d,d,e,f
LIB "solve.lib";
ring r=(0,a,b,c,d,e,f),(l1,l2,l3,l4),dp;
poly f1=2*l1*b+2*l2*e+2*a*l3+2*l4*l1;
poly f2=2*l1*e+2*l2*d+2*c*l3+2*l4*l2;
poly f3=2*l1*a+2*l2*c+2*f*l3;
poly f4=l1^2+l2^2-1;
ideal i=f1,f2,f3,f4;
ideal si=std(i);
option(redSB);
ideal maxI=maxideal(1);
ideal j=sat(si,maxI)[1];
vdim(j);
ring R=(0,a,b,c,d,e,f),(l1,l2,l3,l4),dp;
ideal j=fglm(r,j);
list L=triangMH(j);