ApCoCoA-1:BB.BBasisForOI: Difference between revisions

From ApCoCoAWiki
Skaspar (talk | contribs)
Added parameter and return value list.
Skaspar (talk | contribs)
Key and see section update.
Line 20: Line 20:
</example>
</example>
     </description>
     </description>
     <see>BBasis</see>
     <see>BB.BBasis</see>
     <key>kreuzer</key>
     <key>BorderBasis</key>
     <key>bb.borderbasis</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 18:44, 22 April 2009

BB.BorderBasis

Compute the 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.

  • @param F Generators of a zero-dimensional ideal whose border basis should be computed.

  • @param OO A list of terms representing an order ideal.

  • @return A list of border basis 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]
-------------------------------

BB.BBasis