Ask Your Question

dkrumm's profile - activity

2021-09-09 14:07:09 +0200 received badge  Nice Question (source)
2021-09-09 14:07:05 +0200 received badge  Famous Question (source)
2020-01-30 19:15:30 +0200 received badge  Notable Question (source)
2020-01-30 19:15:30 +0200 received badge  Popular Question (source)
2019-08-26 09:23:08 +0200 received badge  Popular Question (source)
2018-07-11 04:37:21 +0200 commented answer Expressing a symmetric polynomial in terms of elementary symmetric polynomials

It is not clear to me how this answer helps. I want to express a symmetric polynomial $P(x,y)$ in terms of $x+y$ and $xy$, the two elementary symmetric polynomials in $x$ and $y$. How can I modify my code to do this?

2018-07-10 12:07:54 +0200 received badge  Student (source)
2018-07-10 01:12:49 +0200 asked a question Expressing a symmetric polynomial in terms of elementary symmetric polynomials

Given a symmetric polynomial $P$ in $n$ variables, I'm trying to write code to express $P$ as a polynomial in the elementary symmetric polynomials in $n$ variables. My understanding is that SymmetricFunctions can be used for this, but it's not clear to me how this works. Below is the code for one simple example.

R.<x,y> = PolynomialRing(QQ)
e = SymmetricFunctions(QQ).elementary()
e.from_polynomial(x^2*y^2)

The output I get is

e[2, 2] - 2*e[3, 1] + 2*e[4],

which does not make sense to me; the expression should be e[2,2], I believe. Can anybody point out what I'm doing wrong?

2014-07-27 00:07:36 +0200 asked a question Git-Trac command setup

I'm trying to install the Git-Trac command by following the instructions given here. When I run the command

git clone https://github.com/sagemath/git-trac-command.git

I get the following error message: "fatal: unable to access 'https://github.com/sagemath/git-trac-command.git/': SSL certificate problem: Invalid certificate chain"

Any suggestions on how to deal with this?