Ask Your Question
1

How to convert a symmetric function into a polynomial on elementary symmetric functions?

asked 0 years ago

Ys1123 gravatar image

By the Fundamental Theory of Symmetric Polynomials every symmetric polynomial in C[x1,,xn] can be written uniquely in the elementary symmetric functions e1,,en. How can we obtain the expression if we are given a concrete symmetric polynomial on sagemath?

I want to know the value (x2x2)(y2y2)(z2z2) when x+y+z=0,xy+yz+zx=3,xyz=1.

I asked ChatGPT and searched on asksage , but I was unable to finally find what I was looking for.

Preview: (hide)

Comments

The page I saw was for example : https://ask.sagemath.org/question/325...

Ys1123 gravatar imageYs1123 ( 0 years ago )

First create a symmetric function from the polynomial, then convert it to the ebasis. See https://doc.sagemath.org/html/en/refe...

FrédéricC gravatar imageFrédéricC ( 0 years ago )

The link is too wide. Which command do you intend respectively?

Ys1123 gravatar imageYs1123 ( 0 years ago )

2 Answers

Sort by » oldest newest most voted
0

answered 0 years ago

Max Alekseyev gravatar image

updated 0 years ago

Same idea as in @FrédéricC's answer applied to the OP's example:

I want to know the value (x2x2)(y2y2)(z2z2) when x+y+z=0,xy+yz+zx=3,xyz=1.

e_value = [1, 0, -3, -1]     # given values for e[i], i=0..3
e = SymmetricFunctions(QQ).e()
x, y, z = polygens(QQ, 'x,y,z')
f = e.from_polynomial( (x^2-x-2)*(y^2-y-2)*(z^2-z-2) )
v = sum( c * prod(e_value[ti] if ti<len(e_value) else 0 for ti in t) for t,c in f )
print(v)

It gives value 9.

Preview: (hide)
link
0

answered 0 years ago

FrédéricC gravatar image

Like this

sage: e = SymmetricFunctions(QQ).e()
sage: x, y, z = polygens(QQ, 'x,y,z')
sage: f=1+(x+y+z)**3
sage: e.from_polynomial(f)
e[] + e[1, 1, 1]
Preview: (hide)
link

Comments

Thank you I checked it works. And I got thate[a] means elementary symmetric polynomial of degree a ande[a,b,c,…] means the producte[a]*e[b]*e[c]*… Then can you satisfy my second desire? (“ I want to know the value…”) I feel like it’s difficult owing to such wired notations.

Ys1123 gravatar imageYs1123 ( 0 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 0 years ago

Seen: 324 times

Last updated: Sep 22 '24