up previous next
RationalAffinePoints

Affine rational solutions

Syntax
RationalAffinePoints(L: LIST of RINGELEM): LIST of LIST of RINGELEM

Description
This function returns the list of affine rational solutions (points) of a 0-dimensional polynomial system L . See also RationalSolve

Example
/**/ Use QQ[x,y,z];
/**/ L := [x^3-y^2+z-1, x-2, (y-3)*(y+2)];
/**/ RationalAffinePoints(L);
[[2, -2, -3], [2, 3, 2]]

See Also