up previous next
RationalProjectivePoints

Projective rational solutions

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

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

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

See Also