up previous next
NCo.PrefixInterreduction

Prefix interreduction of a LIST of polynomials in a finitely presented monoid ring.
Syntax
          
NCo.PrefixInterreduction(G:LIST):LIST

          

Description
Let P=K be a finitely presented monoid ring. A subset set G of non-zero polynomials in P is said to be prefix interreduced if no element of Supp(g) is a multiply of the leading word of any element in R, and if no element of Supp(g) contains the leading word of any elements in {G\{g}} as a prefix.

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.

Please set ring environment coefficient field K, alphabet (or set of indeterminates) X, rewrite relations Relations and word ordering Ordering through the functions NCo.SetFp, NCo.SetX, NCo.SetRelations and NCo.SetOrdering, respectively, before using this function. The default coefficient field is the field of rational numbers, i.e. RAT in CoCoAL, and the default ordering is the length-lexicographic ordering "LLEX". For more information, please check the relevant functions.

Example
NCo.SetX("abc");
NCo.SetOrdering("LLEX");
NCo.SetRelations([["aa",""], ["bb",""], ["ab","c"], ["ac", "b"], ["cb", "a"]]);
G:=[[[1,"b"],[1,""]], [[1,"c"]],[[1,"ba"]]];
NCo.PrefixInterreduction(G);

[[[1, "b"], [1, ""]], [[1, "c"]], [[1, "a"]]]
-------------------------------


See Also