Difference between revisions of "ApCoCoA-1:NC.LC"
Line 5: | Line 5: | ||
</short_description> | </short_description> | ||
<syntax> | <syntax> | ||
− | NC.LC(F:LIST): | + | NC.LC(F:LIST):RAT |
</syntax> | </syntax> | ||
<description> | <description> | ||
Line 12: | Line 12: | ||
Before calling the function, please set ring environment coefficient field <tt>K</tt>, alphabet <tt>X</tt> and ordering through the functions <ref>NC.SetFp</ref>(Prime) (or <ref>NC.UnsetFp</ref>()), <ref>NC.SetX</ref>(X) and <ref>NC.SetOrdering</ref>(Ordering) respectively. Default coefficient field is <tt>Q</tt>. Default ordering is length-lexicographic ordering (<quotes>LLEX</quotes>). For more information, please check the relevant functions. | Before calling the function, please set ring environment coefficient field <tt>K</tt>, alphabet <tt>X</tt> and ordering through the functions <ref>NC.SetFp</ref>(Prime) (or <ref>NC.UnsetFp</ref>()), <ref>NC.SetX</ref>(X) and <ref>NC.SetOrdering</ref>(Ordering) respectively. Default coefficient field is <tt>Q</tt>. Default ordering is length-lexicographic ordering (<quotes>LLEX</quotes>). For more information, please check the relevant functions. | ||
<itemize> | <itemize> | ||
− | <item>@param <em>F</em>: a polynomial in <tt>K<X></tt>. Each polynomial in <tt>K<X></tt> is represented as a LIST of LISTs, which are pairs of form [c, w] where c is in <tt>K</tt> and w is a word in <tt>X*</tt>. Unit in <tt>X*</tt> is empty word represented as an empty | + | <item>@param <em>F</em>: a polynomial in <tt>K<X></tt>. Each polynomial in <tt>K<X></tt> is represented as a LIST of LISTs, which are pairs of form <tt>[c, w]</tt> where c is in <tt>K</tt> and w is a word in <tt>X*</tt>. Unit in <tt>X*</tt> is empty word represented as an empty string <quotes></quotes>. <tt>0</tt> polynomial is represented as an empty list. For example, polynomial <tt>F:=xy-y+1</tt> in <tt>K<x,y></tt> is represented as F:=[[1,<quotes>xy</quotes>], [-1, <quotes>y</quotes>], [1,<quotes></quotes>]].</item> |
− | <item>@return: an element of | + | <item>@return: an element of the current field which is the leading term of <tt>F</tt> with respect to the current ordering. If <tt>F=0</tt>, then <tt>0</tt> will be returned. </item> |
</itemize> | </itemize> | ||
<example> | <example> |
Revision as of 14:13, 14 October 2010
NC.LC
Leading coefficient of a polynomial over a free associative K-algebra.
Syntax
NC.LC(F:LIST):RAT
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.
@param F: a polynomial in K<X>. Each polynomial in K<X> is represented as a LIST of LISTs, which are pairs of form [c, w] where c is in K and w is a word in X*. Unit in X* is empty word represented as an empty string "". 0 polynomial is represented as an empty list. For example, polynomial F:=xy-y+1 in K<x,y> is represented as F:=[[1,"xy"], [-1, "y"], [1,""]].
@return: an element of the current field which is the leading term of F with respect to the current ordering. If F=0, then 0 will be returned.
Example
NC.SetX(<quotes>abc</quotes>); F:=[[1,<quotes>ab</quotes>],[2,<quotes>aa</quotes>],[3,<quotes>bb</quotes>],[4,<quotes>bab</quotes>]]; NC.SetOrdering(<quotes>ELIM</quotes>); NC.LC(F); 2 ------------------------------- NC.SetOrdering(<quotes>LLEX</quotes>); NC.LC(F); 4 ------------------------------- NC.LC([]); -- 0 polynomial 0 -------------------------------
See also