muEC::SYMF::Sf2Table – converts a symmetric function into a table

The muEC::SYMF::Sf2Table function converts a symmetric function into a table. The table is indexed by partitions (possibly empty) and each entry that corresponds to a partition part is interpreted as the coefficient of b[part] in the expression of the symmetric function in the basis b.

This function can be useful if one wants to act either on coefficients or on partitions. For instance, one can use the map function to act on coefficients.

→ Examples

Call:

muEC::SYMF::Sf2Table(sf, b)

Parameters:

sf

any symmetric function

b

any name of known basis

Related Functions:

muEC::SYMF::Sf2TableVar, muEC::SYMF::Table2Sf

Example 1:

muEC::SYMF::Sf2Table( q^2*s[3,1,1] + q*s[4,2] + q + s[4,2], s );

math

map( %, coefficient -> coefficient - 1 );

math

muEC::SYMF::Table2Sf( %, s );

math