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

FUNCTION: Nca2Table - convert an element of the nilCoxeter algebra into a table

CALLING SEQUENCE:

Nca2Table(e)
NCA[Nca2Table](e)

PARAMETERS:

e = any element of the nilCoxeter algebra

SYNOPSIS:

EXAMPLES:


> with(NCA):
> t := Nca2Table((x1+x2)*A[2,3,1] + x1^2*A[1,3,2] + A[1,2,3]);
 
                       t := table(sparse,[
                              [2, 3, 1] = x1 + x2
                                            2
                              [1, 3, 2] = x1
                              [1, 2, 3] = 1
                            ])
> t := map(SP['ToX'], t);
 
                      t := table(sparse,[
                             [2, 3, 1] = X[1, 3, 2]
                             [1, 3, 2] = X[3, 1, 2]
                             [1, 2, 3] = X[1]
                           ])
 
> Table2Nca(t);
 
    X[1, 3, 2] A[2, 3, 1] + X[3, 1, 2] A[1, 3, 2] + X[1] A[1, 2, 3]
 

SEE ALSO: Table2Nca SP[ToX]