ACE | BN | BNA | CG | CLG | COMP | FM | FREE | HEKA | IDCA | NCSF | PART | SFA | SG | SGA | SP | SYMF | TAB | TYP |
FUNCTION: Nca2Table - convert an element of the nilCoxeter algebra into a table
CALLING SEQUENCE:
PARAMETERS:
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]