|  |  D.8.9.2 psigncnd Procedure from librarysigncond.lib(see  signcond_lib).
 
Example:Usage:
psigncnd(P,l); ideal P, list l
Return:
list: a formatted version of l
 See also:
 signcnd.|  | LIB "signcond.lib";
ring r = 0,(x,y),dp;
ideal i = (x-2)*(x+3)*x,(y-1)*(y+2)*(y+4);
ideal P = x,y;
list l = signcnd(P,i);
psigncnd(P,l);
==> 1 elements of V(I) satisfy {P[1] = 0,P[2] > 0}
==> 1 elements of V(I) satisfy {P[1] > 0,P[2] > 0}
==> 1 elements of V(I) satisfy {P[1] < 0,P[2] > 0}
==> 2 elements of V(I) satisfy {P[1] = 0,P[2] < 0}
==> 2 elements of V(I) satisfy {P[1] > 0,P[2] < 0}
==> 2 elements of V(I) satisfy {P[1] < 0,P[2] < 0}
==> 
 | 
 
 |