First time here? Check out the FAQ!

Ask Your Question
1

Enumerating points in 0-dimensional ideals over Qbar

asked 6 years ago

Mathieu Dutour Sikiric gravatar image

updated 6 years ago

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?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 6 years ago

tmonteil gravatar image

updated 6 years ago

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.

Preview: (hide)
link

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: 6 years ago

Seen: 818 times

Last updated: Sep 23 '18