up previous next
NC.IsFinite

Checks whether K-vector space K/ is finitely generated.
Syntax
          
NC.IsFinite(X:STRING, M:LIST):BOOL

          

Description
Please note: The function(s) explained on this page is/are using the ApCoCoAServer. You will have to start the ApCoCoAServer in order to use it/them.



Example
X:="xy";
M:=["xxx","yxy","xyx"];
NC.IsFinite(X, M);

False
-------------------------------
-- Done.
-------------------------------
X:="xy";
M:=["xxx","yxy","xyx","yyx","yyy"];
NC.IsFinite(X, M);


True
-------------------------------
-- Done.
-------------------------------


See Also