| LIB "rootisolation.lib";
ring R = 0,(x,y),dp;
ideal I = 2x2-xy+2y2-2,2x2-3xy+3y2-2; // V(I) has four elements
interval i = bounds(-3/2,3/2);
box B = list(i, i);
list result = rootIsolation(I, B);
result;
==> [1]:
==> empty list
==> [2]:
==> [1]:
==> [-1, -1] x [0, 0]
==> [2]:
==> [-1/2, -1/2] x [-1, -1]
==> [3]:
==> [1/2, 1/2] x [1, 1]
==> [4]:
==> [1, 1] x [0, 0]
|