up previous next
MinGensSubalgebra    --    list of minimal generators as subalgebra


Syntax
MinGensSubalgebra(L: LIST): LIST

Description
If L is a list of polynomials, this function returns a list of minimal generators for the algebra K[L] (not necessarily a subset of L).

Example
/**/ use P::=QQ[x,y,z];
/**/ f := 3*x^2;
/**/ g := x*y -z^2;
/**/ h := f^2*g -5*g^3;
/**/ MinGensSubalgebra([f, g, h]);
[x*y -z^2,  x^2]

See Also