Difference between revisions of "ApCoCoA-1:BB.BBasis"

From ApCoCoAWiki
m (Description update)
m (replaced <quotes> tag by real quotes)
 
(28 intermediate revisions by 6 users not shown)
Line 1: Line 1:
  <command>
+
{{Version|1}}
    <title>BBasis</title>
+
<command>
    <short_description>Compute the Border Basis of a zero dimensional ideal using ApCoCoAServer</short_description>
+
  <title>BB.BBasis</title>
 +
  <short_description>Computes the border basis of a zero-dimensional ideal.</short_description>
 +
 
 
<syntax>
 
<syntax>
BBasis(I:IDEAL):LIST
+
BB.BBasis(I:IDEAL):LIST of POLY
 +
BB.BBasis(I:IDEAL, Method:STRING):LIST of POLY
 
</syntax>
 
</syntax>
    <description>
+
  <description>
The function <tt>BBasis</tt> calls the ApCoCoAServer to compute
+
<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.
the Border Basis of a zero dimensional ideal I.
+
<par/>
 +
Let <tt>sigma</tt> be a degree compatible term ordering. The function <tt>BBasis</tt> calls the ApCoCoAServer to compute the <tt>O_sigma(I)</tt>-border basis of the zero-dimensional input ideal <tt>I</tt> and returns it as a list of polynomials.
 +
<par/>
 +
You may specify a method parameter which indicates which variation of the Border Basis Algorithm should be used for the computation of the border basis. Possible method values are <tt>StandardBBA</tt>, <tt>MatrixBBA</tt> (polynomial reduction via transformation to matrices and row echelon form computation), and <tt>HeuristicBBA</tt> (uses a heuristic strategy for the computing universe enlargements). The default method is <tt>StandardBBA</tt>.
 +
<par/>
 +
The return value will be the computed border basis.
 +
<itemize>
 +
  <item>@param <em>I</em> A zero-dimensional ideal of which to compute a border basis.</item>
 +
  <item>@return A list of border basis polynomials.</item>
 +
</itemize>
 +
The following parameter is optional.
 +
<itemize>
 +
  <item>@param <em>Method</em> A string that specifies which variation of the Border Basis Algorithm to use. Possible method values are "StandardBBA" (default), "MatrixBBA", and "HeuristicBBA".</item>
 +
</itemize>
 +
<example>
 +
Use QQ[x, y], DegLex;
 +
I := Ideal([x^2, xy + y^2]);
 +
BB := BB.BBasis(I);
 +
BB;
  
 +
-------------------------------
 +
[xy + y^2, x^2, y^3, xy^2]
 +
-------------------------------
 +
</example>
 
<example>
 
<example>
Use Q[x, y], DegLex;
+
Use QQ[x, y, z];
I := Ideal([x^2, xy + y2]);
+
I := Ideal([x^2, y^2, z^2]);
BB := BBasis(I);
+
BB := BB.BBasis(I, "MatrixBBA");
 +
BB;
 +
 
 +
-------------------------------
 +
[z^2, y^2, x^2, yz^2, xz^2, y^2z, x^2z, xy^2, x^2y, xyz^2, xy^2z, x^2yz]
 +
-------------------------------
 
</example>
 
</example>
    </description>
+
  </description>
    <seealso>
+
  <see>Introduction to CoCoAServer</see>
      <see>GBasis5, and more</see>
+
  <see>CoCoA:GBasis5, and more</see>
    </seealso>
+
  <see>ApCoCoA-1:BB.BBasisForOI</see>
    <types>
+
  <types>
      <type>ideal</type>
+
    <type>borderbasis</type>
      <type>list</type>
+
    <type>ideal</type>
      <type>cocoaserver</type>
+
    <type>apcocoaserver</type>
    </types>
+
  </types>
    <key>bbasis</key>
+
  <key>BBasis</key>
    <key>border basis</key>
+
  <key>BB.BBasis</key>
    <key>kaspar</key>
+
  <key>borderbasis.BBasis</key>
   </command>
+
  <key>border basis</key>
 +
   <wiki-category>ApCoCoA-1:Package_borderbasis</wiki-category>
 +
</command>

Latest revision as of 13:27, 29 October 2020

This article is about a function from ApCoCoA-1.

BB.BBasis

Computes the border basis of a zero-dimensional ideal.

Syntax

BB.BBasis(I:IDEAL):LIST of POLY
BB.BBasis(I:IDEAL, Method:STRING):LIST of POLY

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.

Let sigma be a degree compatible term ordering. The function BBasis calls the ApCoCoAServer to compute the O_sigma(I)-border basis of the zero-dimensional input ideal I and returns it as a list of polynomials.

You may specify a method parameter which indicates which variation of the Border Basis Algorithm should be used for the computation of the border basis. Possible method values are StandardBBA, MatrixBBA (polynomial reduction via transformation to matrices and row echelon form computation), and HeuristicBBA (uses a heuristic strategy for the computing universe enlargements). The default method is StandardBBA.

The return value will be the computed border basis.

  • @param I A zero-dimensional ideal of which to compute a border basis.

  • @return A list of border basis polynomials.

The following parameter is optional.

  • @param Method A string that specifies which variation of the Border Basis Algorithm to use. Possible method values are "StandardBBA" (default), "MatrixBBA", and "HeuristicBBA".

Example

Use QQ[x, y], DegLex;
I := Ideal([x^2, xy + y^2]);
BB := BB.BBasis(I);
BB;

-------------------------------
[xy + y^2, x^2, y^3, xy^2]
-------------------------------

Example

Use QQ[x, y, z];
I := Ideal([x^2, y^2, z^2]);
BB := BB.BBasis(I, "MatrixBBA");
BB;

-------------------------------
[z^2, y^2, x^2, yz^2, xz^2, y^2z, x^2z, xy^2, x^2y, xyz^2, xy^2z, x^2yz]
-------------------------------

Introduction to CoCoAServer

CoCoA:GBasis5, and more

ApCoCoA-1:BB.BBasisForOI