ACE BN BNA CG CLG COMP FM FREE HEKA IDCA NCA NCSF PART SFA SG SGA SP SYMF TAB TYP

FUNCTION: TableYY - table of all double Schubert polynomials

CALLING SEQUENCE:

TableYY(n)
TableYY(n, perm)
SP[TableYY](n)
SP[TableYY](n, perm)

PARAMETERS:

n = any positive integer denoting the degree of a symmetric group
perm = any list denoting a permutation

SYNOPSIS:

EXAMPLES:


> with(SP):
> t:=TableYY(3);
 
              t := table([
                       [0, 0, 0] = 1
                       [1, 0, 0] = x1 - y1
                       [2, 0, 0] = (x1 - y2) (x1 - y1)
                       [0, 1, 0] = x2 - y2 + x1 - y1
                       [2, 1, 0] = (x2 - y1) (x1 - y2) (x1 - y1)
                       [1, 1, 0] = (x2 - y1) (x1 - y1)
                   ])
 
> t[ [0,1,0] ];
 
                             x2 - y2 + x1 - y1
 
> TableYY(3, [3,2,1]);
 
                table([
                    [0, 0, 0] = 1
                    [1, 0, 0] = x1 - x3
                    [2, 0, 0] = (x1 - x2) (x1 - x3)
                    [0, 1, 0] = x1 - x3
                    [2, 1, 0] = (x2 - x3) (x1 - x2) (x1 - x3)
                    [1, 1, 0] = (x2 - x3) (x1 - x3)
                ])
 

SEE ALSO: TableY