Difference between revisions of "ApCoCoA-1:BB.BBasisForOI"
From ApCoCoAWiki
KHiddemann (talk | contribs) m |
KHiddemann (talk | contribs) (new alias) |
||
Line 1: | Line 1: | ||
<command> | <command> | ||
− | <title> | + | <title>BB.BorderBasis</title> |
<short_description>border basis of an ideal</short_description> | <short_description>border basis of an ideal</short_description> | ||
<syntax> | <syntax> | ||
− | + | BB.BorderBasis(F:LIST,OO:LIST):LIST | |
</syntax> | </syntax> | ||
<description> | <description> | ||
Line 9: | Line 9: | ||
<example> | <example> | ||
Use Q[x,y]; | Use Q[x,y]; | ||
− | + | BB.BorderBasis([x^2, xy + y^2], [1,x,y,y^2]); | |
[xy + y^2, x^2, y^3, xy^2] | [xy + y^2, x^2, y^3, xy^2] | ||
Line 17: | Line 17: | ||
<see>BBasis</see> | <see>BBasis</see> | ||
<key>kreuzer</key> | <key>kreuzer</key> | ||
+ | <key>bb.borderbasis</key> | ||
<key>borderbasis.borderbasis</key> | <key>borderbasis.borderbasis</key> | ||
<wiki-category>Package_borderbasis</wiki-category> | <wiki-category>Package_borderbasis</wiki-category> | ||
</command> | </command> |
Revision as of 19:44, 8 November 2007
BB.BorderBasis
border basis of an ideal
Syntax
BB.BorderBasis(F:LIST,OO:LIST):LIST
Description
Computes the border basis of the ideal <formula>I=<F></formula> with respect to the order ideal OO. Gives an error messages if no border basis exists. Uses the <formula>O_{\sigma}(I)</formula> border basis and the border basis transformation algorithm. The inputs are a list of polynomials F and a list OO of terms that specify an order ideal. The output is a list of polynomials.
Example
Use Q[x,y]; BB.BorderBasis([x^2, xy + y^2], [1,x,y,y^2]); [xy + y^2, x^2, y^3, xy^2] -------------------------------