Difference between revisions of "ApCoCoA-1:NCo.MB"
m (replaced <quotes> tag by real quotes) |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | {{Version|1}} | ||
<command> | <command> | ||
<title>NCo.MB</title> | <title>NCo.MB</title> | ||
Line 8: | Line 9: | ||
</syntax> | </syntax> | ||
<description> | <description> | ||
− | Given a two-sided ideal <tt>I</tt> in a free monoid ring <tt>K<X></tt>, we can consider the <tt>K</tt>-algebra <tt>K<X>/I</tt> as a <tt>K</tt>-vector space. Moreover, let <tt>G</tt> be a Groebner basis of <tt>I</tt>, and let <tt>B</tt> be the set of all words which are not a multiple of any word in the leading word set <tt>LW{G}</tt>. Then the residue class of the words in <tt>B</tt> form a <tt>K</tt>-basis, called a <em>Macaulay's basis</em>, of <tt>K<X>/I</tt>. For the sake of computing the values of the Hilbert function (see <ref>NCo.HF</ref>) of <tt>K<X>/I</tt>, in this function we require that <tt>G</tt> has to be a Groebner basis with respect to a length compatible word ordering (see <ref>NCo.SetOrdering</ref>). | + | Given a two-sided ideal <tt>I</tt> in a free monoid ring <tt>K<X></tt>, we can consider the <tt>K</tt>-algebra <tt>K<X>/I</tt> as a <tt>K</tt>-vector space. Moreover, let <tt>G</tt> be a Groebner basis of <tt>I</tt>, and let <tt>B</tt> be the set of all words which are not a multiple of any word in the leading word set <tt>LW{G}</tt>. Then the residue class of the words in <tt>B</tt> form a <tt>K</tt>-basis, called a <em>Macaulay's basis</em>, of <tt>K<X>/I</tt>. For the sake of computing the values of the Hilbert function (see <ref>ApCoCoA-1:NCo.HF|NCo.HF</ref>) of <tt>K<X>/I</tt>, in this function we require that <tt>G</tt> has to be a Groebner basis with respect to a length compatible word ordering (see <ref>ApCoCoA-1:NCo.SetOrdering|NCo.SetOrdering</ref>). |
<par/> | <par/> | ||
<em>Please note:</em> The function(s) explained on this page is/are using the <em>ApCoCoAServer</em>. You will have to start the ApCoCoAServer in order to use it/them. | <em>Please note:</em> The function(s) explained on this page is/are using the <em>ApCoCoAServer</em>. You will have to start the ApCoCoAServer in order to use it/them. | ||
<par/> | <par/> | ||
− | Please set ring environment <em>coefficient field</em> <tt> K</tt>, <em>alphabet</em> (or set of indeterminates) <tt>X</tt> and <em>ordering</em> via the functions <ref>NCo.SetFp</ref>, <ref>NCo.SetX</ref> and <ref>NCo.SetOrdering</ref>, respectively, before using this function. The default coefficient field is <tt>Q</tt>, and the default ordering is the length-lexicographic ordering ( | + | Please set ring environment <em>coefficient field</em> <tt> K</tt>, <em>alphabet</em> (or set of indeterminates) <tt>X</tt> and <em>ordering</em> via the functions <ref>ApCoCoA-1:NCo.SetFp|NCo.SetFp</ref>, <ref>ApCoCoA-1:NCo.SetX|NCo.SetX</ref> and <ref>ApCoCoA-1:NCo.SetOrdering|NCo.SetOrdering</ref>, respectively, before using this function. The default coefficient field is <tt>Q</tt>, and the default ordering is the length-lexicographic ordering ("LLEX"). For more information, please check the relevant functions. |
<itemize> | <itemize> | ||
− | <item>@param <em>Gb:</em> a LIST of non-zero polynomials in <tt>K<X></tt> forming a Groebner basis with respect to a length compatible word ordering. Each polynomial is represented as a LIST of monomials, which are LISTs of the form [C, W] where W is a word in <tt><X></tt> and C is the coefficient of W. For example, the polynomial <tt>f=xy-y+1</tt> is represented as F:=[[1, | + | <item>@param <em>Gb:</em> a LIST of non-zero polynomials in <tt>K<X></tt> forming a Groebner basis with respect to a length compatible word ordering. Each polynomial is represented as a LIST of monomials, which are LISTs of the form [C, W] where W is a word in <tt><X></tt> and C is the coefficient of W. For example, the polynomial <tt>f=xy-y+1</tt> is represented as F:=[[1,"xy"], [-1, "y"], [1,""]]. <em>Warning:</em> users should take responsibility to make sure that Gb is indeed a Groebner basis with respect to a length compatible word ordering! In the case that Gb is a partical Groebner basis, the function enumerates a pseudo basis.</item> |
<item>@return: a LIST of words forming a Macaulay's basis of the <tt>K</tt>-algebra <tt>K<X>/<Gb></tt>.</item> | <item>@return: a LIST of words forming a Macaulay's basis of the <tt>K</tt>-algebra <tt>K<X>/<Gb></tt>.</item> | ||
Line 23: | Line 24: | ||
</itemize> | </itemize> | ||
<example> | <example> | ||
− | NCo.SetX( | + | NCo.SetX("xyzt"); |
− | NCo.SetOrdering( | + | NCo.SetOrdering("LLEX"); |
− | Gb:= [[[1, | + | Gb:= [[[1, "yt"], [-1, "ty"]], [[1, "xt"], [-1, "tx"]], [[1, "xy"], [-1, "ty"]], [[1, "xx"], [-1, "yx"]], |
− | [[1, | + | [[1, "tyy"], [-1, "tty"]], [[1, "yyx"], [-1, "tyx"]]]; |
NCo.MB(Gb,3); | NCo.MB(Gb,3); | ||
− | [[ | + | [[""], ["t", "z", "y", "x"], ["tt", "tz", "ty", "tx", "zt", "zz", "zy", "zx", "yz", "yy", "yx", "xz"], |
− | [ | + | ["ttt", "ttz", "tty", "ttx", "tzt", "tzz", "tzy", "tzx", "tyz", "tyx", "txz", "ztt", "ztz", "zty", "ztx", |
− | + | "zzt", "zzz", "zzy", "zzx", "zyz", "zyy", "zyx", "zxz", "yzt", "yzz", "yzy", "yzx", "yyz", "yyy", | |
− | + | "yxz", "xzt", "xzz", "xzy", "xzx"]] | |
------------------------------- | ------------------------------- | ||
</example> | </example> | ||
</description> | </description> | ||
<seealso> | <seealso> | ||
− | <see>NCo.HF</see> | + | <see>ApCoCoA-1:NCo.HF|NCo.HF</see> |
− | <see>NCo.IsGB</see> | + | <see>ApCoCoA-1:NCo.IsGB|NCo.IsGB</see> |
− | <see>NCo.LW</see> | + | <see>ApCoCoA-1:NCo.LW|NCo.LW</see> |
− | <see>NCo.SetFp</see> | + | <see>ApCoCoA-1:NCo.SetFp|NCo.SetFp</see> |
− | <see>NCo.SetOrdering</see> | + | <see>ApCoCoA-1:NCo.SetOrdering|NCo.SetOrdering</see> |
− | <see>NCo.SetX</see> | + | <see>ApCoCoA-1:NCo.SetX|NCo.SetX</see> |
− | <see>Introduction to CoCoAServer</see> | + | <see>ApCoCoA-1:Introduction to CoCoAServer|Introduction to CoCoAServer</see> |
</seealso> | </seealso> | ||
<types> | <types> | ||
Line 53: | Line 54: | ||
<key>NCo.MB</key> | <key>NCo.MB</key> | ||
<key>MB</key> | <key>MB</key> | ||
− | <wiki-category>Package_gbmr</wiki-category> | + | <wiki-category>ApCoCoA-1:Package_gbmr</wiki-category> |
</command> | </command> |
Latest revision as of 13:41, 29 October 2020
This article is about a function from ApCoCoA-1. |
NCo.MB
Enumerate a Macaulay's basis of a finitely generated K-algebra.
Syntax
NCo.MB(Gb:LIST[, DB:INT]):LIST
Description
Given a two-sided ideal I in a free monoid ring K<X>, we can consider the K-algebra K<X>/I as a K-vector space. Moreover, let G be a Groebner basis of I, and let B be the set of all words which are not a multiple of any word in the leading word set LW{G}. Then the residue class of the words in B form a K-basis, called a Macaulay's basis, of K<X>/I. For the sake of computing the values of the Hilbert function (see NCo.HF) of K<X>/I, in this function we require that G has to be a Groebner basis with respect to a length compatible word ordering (see NCo.SetOrdering).
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 and ordering via the functions NCo.SetFp, NCo.SetX and NCo.SetOrdering, respectively, before using this function. The default coefficient field is Q, and the default ordering is the length-lexicographic ordering ("LLEX"). For more information, please check the relevant functions.
@param Gb: a LIST of non-zero polynomials in K<X> forming a Groebner basis with respect to a length compatible word ordering. Each polynomial is represented as a LIST of monomials, which are LISTs 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,""]]. Warning: users should take responsibility to make sure that Gb is indeed a Groebner basis with respect to a length compatible word ordering! In the case that Gb is a partical Groebner basis, the function enumerates a pseudo basis.
@return: a LIST of words forming a Macaulay's basis of the K-algebra K<X>/<Gb>.
Optional parameter:
@param DB: a positive INT which is a degree bound of the lengths of words. Note that we set DB=32 by default. Thus, in the case that K<X>/<Gb> has a finite Macaulay's basis, it is necessary to set DB to a large enough INT in order to compute the whole Macaulay's basis.
Example
NCo.SetX("xyzt"); NCo.SetOrdering("LLEX"); Gb:= [[[1, "yt"], [-1, "ty"]], [[1, "xt"], [-1, "tx"]], [[1, "xy"], [-1, "ty"]], [[1, "xx"], [-1, "yx"]], [[1, "tyy"], [-1, "tty"]], [[1, "yyx"], [-1, "tyx"]]]; NCo.MB(Gb,3); [[""], ["t", "z", "y", "x"], ["tt", "tz", "ty", "tx", "zt", "zz", "zy", "zx", "yz", "yy", "yx", "xz"], ["ttt", "ttz", "tty", "ttx", "tzt", "tzz", "tzy", "tzx", "tyz", "tyx", "txz", "ztt", "ztz", "zty", "ztx", "zzt", "zzz", "zzy", "zzx", "zyz", "zyy", "zyx", "zxz", "yzt", "yzz", "yzy", "yzx", "yyz", "yyy", "yxz", "xzt", "xzz", "xzy", "xzx"]] -------------------------------
See also