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


Syntax
SubalgebraMinGens(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).

Verbosity range 40-90.

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

See Also