| LIB "lrcalc.lib";
// Compute the expantion of a square of the Schubert polynomial
// corresponding to (1 3 2) in the basis of Schubert polynomials
list x = 1, 3, 2;
LRschubmult(x, x);
==> [1]:
==> [1]:
==> 1
==> [2]:
==> [1]:
==> 1
==> [2]:
==> 4
==> [3]:
==> 2
==> [4]:
==> 3
==> [2]:
==> [1]:
==> 1
==> [2]:
==> [1]:
==> 2
==> [2]:
==> 3
==> [3]:
==> 1
|