Processing math: 100%
Ask Your Question
2

Real Algebraic Scheme question

asked 6 years ago

anonymous user

Anonymous

updated 3 years ago

FrédéricC gravatar image

I apologize if this question is too naive.

I need to know the irreducible components of an algebraic scheme defined over R. I can get Sage to do this if I consider the scheme is defined over Q, but this is not sufficient to answer my question over R.

Can Sage actually do this for real algebraic schemes?

and here is the code I tried:

K = RealField()
A9 = AffineSpace(K, 2, 'a,b')
A9.coordinate_ring().inject_variables()
W=A9.subscheme([a*b^2]);
W.is_irreducible()
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 6 years ago

tmonteil gravatar image

As a general advice, note that when you write

sage: K = RealField()

You do not define the genuine real field, but an approximation made of floating-points numbers with 53 bits of precision:

sage: K
Real Field with 53 bits of precision

This is not a safe place for doing algebraic geometry. Usually, i would recommend to work on the algebraic field QQbar or the algebraic real field AA.

Unfortunately, regarding your question, defining K as AA does not solve the problem since the Singular library which is used under the hood for your computation is not able to deal with it.

Sorry not to be able to help more.

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: 265 times

Last updated: Sep 19 '18