Difference between revisions of "ApCoCoA-1:NCo.MRMultiply"

From ApCoCoAWiki
(New page: <command> <title>NCo.MRMultiply</title> <short_description> Multiplication of two polynomials in a finitely presented monoid ring. </short_description> <syntax> NCo.MRMultiply(X:STRING, Or...)
 
Line 33: Line 33:
 
[[2, <quotes>ba</quotes>], [2, <quotes>b</quotes>]]
 
[[2, <quotes>ba</quotes>], [2, <quotes>b</quotes>]]
 
-------------------------------
 
-------------------------------
Relations := [[<quotes>aa</quotes>,<quotes></quotes>], [<quotes>bb</quotes>,<quotes></quotes>], [<quotes>ab</quotes>,<quotes>c</quotes>], [<quotes>ac</quotes>, <quotes>b</quotes>], [<quotes>cb</quotes>, <quotes>a</quotes>]]; 
 
F1 := [[1,<quotes>a</quotes>],[1,<quotes></quotes>]]; 
 
 
NCo.MRMultiply(X, Ordering, Relations, F1, []); -- F1*0
 
NCo.MRMultiply(X, Ordering, Relations, F1, []); -- F1*0
 
[ ]
 
[ ]

Revision as of 16:22, 2 May 2013

NCo.MRMultiply

Multiplication of two polynomials in a finitely presented monoid ring.

Syntax

NCo.MRMultiply(X:STRING, Ordering:STRING, Relations:LIST, F1:LIST, F2:LIST):LIST

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.

Please set coefficient field via the function NCo.SetFp (or NCo.UnsetFp) before calling this function. The default coefficient field is the field of rational numbers, i.e. RAT in CoCoAL. For more information, please check the relevant functions.

  • @param X: a finite alphabet (or set of indeterminates). It is of STRING type. Note that every letter in X MUST appear only once.The order of letters in X induces word orderings.

  • @param Ordering: a word ordering induced by the order of letters in X. It is a STRING, which is a shortened-form of the name of corresponding word ordering. Note that "LLEX" (the length-lexicographic ordering), "ELIM" (an elimination ordering) and "LRLEX" (the length-reverse-lexicographic ordering) are supported currently. See NCo.SetOrdering for more details.

  • @param Relations: a finite set of relations. It is of LIST type. Each element in Relations is of the form [W1, W2], where W1 and W2 are words in <X>. Each word is represented as a STRING. For example, the word xy^2x is represented as "xyyx", and the identity is represented as the empty string "". Thus, the relation (yx, xy) is represented as ["yx", "xy"], and the set of relations {(yx, xy),(zx,xz),(zy,yz)} is represented as [["yx", "xy"],["zx", "xz"],["zy", "yz"]].

  • @param F1, F2: two polynomials, which are left and right operands of multiplication respectively. Each polynomial is represented as a LIST of monomials, which are pairs of the form [C, W] where W is a word in <X> and C is the coefficient of W. For example, the polynomial f=xy-y+1 is represented as F:=[[1,"xy"], [-1, "y"], [1,""]]. The zero polynomial 0 is represented as the empty LIST [].

  • @return: a LIST which represents the polynomial equal to F1*F2.

Example

X := <quotes>abc</quotes>; 
Ordering := <quotes>LLEX</quotes>; 
Relations := [[<quotes>aa</quotes>,<quotes></quotes>], [<quotes>bb</quotes>,<quotes></quotes>], [<quotes>ab</quotes>,<quotes>c</quotes>], [<quotes>ac</quotes>, <quotes>b</quotes>], [<quotes>cb</quotes>, <quotes>a</quotes>]]; 
F1 := [[1,<quotes>a</quotes>],[1,<quotes></quotes>]]; 
F2 := [[1,<quotes>b</quotes>],[1,<quotes>ba</quotes>]]; 
NCo.MRMultiply(X, Ordering, Relations, F1, F2);
[[1, <quotes>ba</quotes>], [1, <quotes>ca</quotes>], [1, <quotes>b</quotes>], [1, <quotes>c</quotes>]]
-------------------------------
NCo.MRMultiply(X, Ordering, Relations, F2, F1);
[[2, <quotes>ba</quotes>], [2, <quotes>b</quotes>]]
-------------------------------
NCo.MRMultiply(X, Ordering, Relations, F1, []); -- F1*0
[ ]
-------------------------------

See also

NCo.SetFp

NCo.SetOrdering

NCo.UnsetFp

Introduction to CoCoAServer