Ask Your Question
0

Check whether point is on a projective variety

asked 2019-09-16 18:08:25 +0200

ConfusedMark gravatar image

I have a projective variety X (defined via .subscheme(polynomials) on a projective space). I have a projective point P. How can I check whether my point is on my variety?

The obvious answer is to try X.point(P). This throws an error if it's not a point, and constructs a point on X otherwise. Is there something like this that will simply give me true or false, rather than an error?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2019-09-16 18:21:06 +0200

rburing gravatar image

Sure, you can take a point from the ambient projective space and do a membership test:

sage: PP.<x,y,z,w,u,v> = ProductProjectiveSpaces([3,1],QQ)
sage: W = PP.subscheme([y^2*z-x^3,z^2-w^2,u^3-v^3])
sage: PP.point([1,1,1,1,1,1]) in W
True
sage: PP.point([1,1,1,1,1,2]) in W
False

Internally this does a try - except block around W.point(...).

edit flag offensive delete link more

Comments

Thank you so much! Didn't even think to try that.

ConfusedMark gravatar imageConfusedMark ( 2019-09-16 18:24:37 +0200 )edit

Your Answer

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

Add Answer

Question Tools

Stats

Asked: 2019-09-16 18:08:25 +0200

Seen: 412 times

Last updated: Sep 16 '19