ApCoCoA-1:BB.MultMat: Difference between revisions

From ApCoCoAWiki
m fixed links to namespace ApCoCoA
m insert version info
 
Line 1: Line 1:
{{Version|1}}
<command>
<command>
   <title>BB.MultMat</title>
   <title>BB.MultMat</title>

Latest revision as of 09:42, 7 October 2020

This article is about a function from ApCoCoA-1.

BB.MultMat

Computes the i-th multiplication matrix associated to a border basis.

Syntax

BB.MultMat(I:INT, OO:LIST, BB:LIST):MAT

Description

Computes the I-th multiplication matrix associated to the given input OO-border basis BB of the ideal generated by the polynomials of BB where I is an index number in the range 1..NumIndets().

The output is a matrix.

  • @param I Index of indeterminate.

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

  • @param BB A list of terms representing the OO-border basis of the ideal generated by the polynomials of BB.

  • @return The I-th multiplication matrix.

Example

Use QQ[x,y];

BB.MultMat(1,
           [1, y, y^2, y^3, x, xy, x^2, x^2y],
           [xy^2, x^3 + xy, y^4, xy^3, x^2y^2, x^3y]);

-------------------------------
Mat([
  [0, 0, 0, 0, 0, 0, 0, 0],
  [0, 0, 0, 0, 0, 0, 0, 0],
  [0, 0, 0, 0, 0, 0, 0, 0],
  [0, 0, 0, 0, 0, 0, 0, 0],
  [1, 0, 0, 0, 0, 0, 0, 0],
  [0, 1, 0, 0, 0, 0, -1, 0],
  [0, 0, 0, 0, 1, 0, 0, 0],
  [0, 0, 0, 0, 0, 1, 0, 0]
])
-------------------------------

BB.BBasis

BB.BBasisForOI

BB.GenMultMat