Ask Your Question
1

Enumerating points in 0-dimensional ideals over Qbar

asked 2018-09-23 12:24:34 +0200

Mathieu Dutour Sikiric gravatar image

updated 2018-09-23 17:59:02 +0200

tmonteil gravatar image

I would like to find the points of a 0-dimensional ideal over Qbar. That is I do not want just the rational points,

The problem is that I found multiple problem while doing that.

1) While the code

R.<t1,t2,t3,e1,e2,e3> = PolynomialRing(QQbar,6, order="degrevlex(3),lex(3)")

is legal, the code

R.<t1,t2,t3> = PolynomialRing(QQbar,6, order="degrevlex(3)")

is not for reasons that esapes me.

2) The code

R.<t1,t2,t3,e1,e2,e3> = PolynomialRing(QQbar,6, order="degrevlex(3),lex(3)")
tvars = [t1,t2,t3]
eltsyms = [R((SymmetricFunctions(QQbar).elementary())[i].expand(3,alphabet=tvars)) for i in range(4)]

is not legal, it is if we replace QQbar by QQ. Why?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2018-09-23 18:02:38 +0200

tmonteil gravatar image

updated 2018-09-23 18:02:57 +0200

There is clearly an issue. Actully, your first example istelf has an issue:

sage: R.<t1,t2,t3,e1,e2,e3> = PolynomialRing(QQbar,6, order="degrevlex(3),lex(3)")
sage: t1
<repr(<sage.rings.polynomial.multi_polynomial_element.MPolynomial_polydict at 0x7f6cf1fb5500>) failed: TypeError: Argument 'self' has incorrect type (expected sage.rings.polynomial.polydict.ETuple, got tuple)>

As for the second example, on the left side of the equality you put 3 indeterminates, while on the right side, you require 6 indeterminates.

I have no idea where it comes from, it requires some more exploration. Thanks for reporting.

edit flag offensive delete link more

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: 2018-09-23 12:24:34 +0200

Seen: 390 times

Last updated: Sep 23 '18