up previous next
NC.IsGB

Checks whether a list of polynomials is a Groebner basis over a free associative K-algebra.
Syntax
          
NC.IsGB(Polynomials: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.

Before calling the function, please set ring environment coefficient field K, alphabet X and ordering through the functions NC.SetFp(Prime) (or NC.UnsetFp()), NC.SetX(X) and NC.SetOrdering(Ordering) respectively. Default coefficient field is Q. Default ordering is length-lexicographic ordering ("LLEX"). For more information, please check the relevant functions.

Example
NC.SetX("xyt");  
F1 := [[1,"xx"], [-1,"yx"]];   
F2 := [[1,"xy"], [-1,"ty"]];  
F3 := [[1,"xt"], [-1, "tx"]];  
F4 := [[1,"yt"], [-1, "ty"]];  
Polynomials := [F1, F2,F3,F4]; 
NC.IsGB(Polynomials); -- LLEX ordering (default ordering)
False
-------------------------------
NC.SetOrdering("ELIM");
NC.IsGB(Polynomials);
False
-------------------------------


See Also