Splitting a polynomial into a symmetric and an antisymmetric part.

136 Views Asked by At

How can I split a polynomial into a symmetric and an antisymmetric part? I have an explicit polynomial, which is a function of three variables (and some further constants). The symmetry properties should be with respect to all three variables.

1

There are 1 best solutions below

1
On

Suppose you have a polynomial $f(X,Y,Z) = X^aY^bZ^c$ of your polynomial. Then $f(-X,-Y,-Z) = (-1)^{a+b+c}X^aY^bZ^c$, which equals $f(X,Y,Z)$ if and only if $a+b+c$ is divisible by two. Therefore the symmetric parts are those terms which have an even sum of powers, and the antiymmetric terms are two whcih have an odd sum of powers.