Difference between revisions of "ApCoCoA-1:NC.Deg"

From ApCoCoAWiki
Line 12: Line 12:
 
Before calling the function, please set ring environment alphabet <tt>X</tt> through the functions <ref>NC.SetX</ref>(X).
 
Before calling the function, please set ring environment alphabet <tt>X</tt> through the functions <ref>NC.SetX</ref>(X).
 
<itemize>
 
<itemize>
<item>@param <em>F</em>: a polynomial in <tt>K&lt;X&gt;</tt>. Each polynomial in <tt>K&lt;X&gt;</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 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&lt;x,y&gt;</tt> is represented as F:=[[1,<quotes>xy</quotes>], [-1, <quotes>y</quotes>], [1,<quotes></quotes>]].</item>
+
<item>@param <em>F</em>: a polynomial in <tt>K&lt;X&gt;</tt>. Each polynomial in <tt>K&lt;X&gt;</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&lt;x,y&gt;</tt> is represented as F:=[[1,<quotes>xy</quotes>], [-1, <quotes>y</quotes>], [1,<quotes></quotes>]].</item>
<item>@return: a INT which is (standard) degree <tt>F</tt>. If <tt>F=0</tt>, then return <tt>0</tt>. </item>
+
<item>@return: a positive integer which is (standard) degree <tt>F</tt>. If <tt>F=0</tt>, then return <tt>0</tt>. </item>
 
</itemize>
 
</itemize>
 
<example>
 
<example>

Revision as of 13:52, 14 October 2010

NC.Deg

(Standard) degree of a polynomial over a free associative K-algebra.

Syntax

NC.Deg(F:LIST):INT

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 alphabet X through the functions NC.SetX(X).

  • @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: a positive integer which is (standard) degree F. If F=0, then return 0.

Example

NC.SetX(<quotes>abc</quotes>);
F:=[[1,<quotes>ab</quotes>],[2,<quotes>aa</quotes>],[3,<quotes>bb</quotes>],[4,<quotes>bab</quotes>]];
NC.Deg(F);
3
-------------------------------
NC.Deg([]); -- 0 polynomial
0
-------------------------------

See also

NC.Add

NC.BP

NC.FindPolynomials

NC.GB

NC.Intersection

NC.IsGB

NC.KernelOfHomomorphism

NC.LC

NC.LT

NC.LTIdeal

NC.MRAdd

NC.MRBP

NC.MRIntersection

NC.MRKernelOfHomomorphism

NC.MRMinimalPolynomials

NC.MRMultiply

NC.MRReducedBP

NC.MRSubtract

NC.MinimalPolynomial

NC.Multiply

NC.NR

NC.ReducedBP

NC.ReducedGB

NC.SetFp

NC.SetOrdering

NC.SetRelations

NC.SetRules

NC.SetX

NC.Subtract

NC.UnsetFp

NC.UnsetOrdering

NC.UnsetRelations

NC.UnsetRules

NC.UnsetX

Introduction to CoCoAServer