Ask Your Question
0

Why am I getting a type error when I attempt to take the projective closure of this intersection?

asked 2021-04-01 05:08:59 +0200

tzeentch gravatar image

I am attempting to take the projective closure of the intersection of the following affine polynomials (not the intersection of the closure!):

$$y^3-y-x^2= 0 $$ $$w^3-w+y^7-y^5-x^4y^3+x^4y = 0.$$

This affine intersection is a curve of dimension one. Unfortunately, I haven't been able to enter this lovely affine curve defined by this intersection into sage. When I attempt as follows:

A.<x,y,w> = AffineSpace(QQ, 3)
P.<u,v,t,s>=ProjectiveSpace(QQ,3)
C = Curve([y^3-y-x^2, w^3-w+y^7-y^5-x^4*y^3+x^4*y], A)
D=C.projective_closure(1,P)

I get an error at the definition of C due to the second polynomial:

TypeError:  F (=[-x^4*y^3 + y^7 + x^4*y - y^5 + w^3 - w]) must be a list or tuple of polynomials of the coordinate ring of A (=Affine Space of dimension 3 over Finite Field of size 3)

I am so confused because this is absolutely in the coordinate ring of $A$. Why am I getting this type error? How can I enter this affine intersection into sage, so that I may take its closure?


As an aside, I can enter the intersection of the closure, which is not what I want, as follows:

x,y,z,w = GF(3)['x,y,z,w'].gens()
C = Curve([y^3-y*z^2-x^2*z, w^3*z^4-w*z^6+y^7-y^5*z^2-x^4*y^3+x^4*y*z^2]); C

The intersection of the closure has an extra irreducible component $[x: 0: w: 0]$,

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-04-01 09:04:10 +0200

rburing gravatar image

The code seems to work as given over here. Have you tried it in the latest version of Sage?

edit flag offensive delete link more

Comments

I can confirm this works for me in Sage 9.2 and Sage 9.3.rc0:

sage: A.<x, y, w> = AffineSpace(QQ, 3)
sage: P.<u, v, t, s> = ProjectiveSpace(QQ, 3)
sage: C = Curve([y^3 - y - x^2, w^3 - w + y^7 - y^5 - x^4*y^3 + x^4*y], A)
sage: %time D = C.projective_closure(1, P)
CPU times: user 44.8 s, sys: 810 ms, total: 45.6 s
Wall time: 47.7 s
slelievre gravatar imageslelievre ( 2021-04-01 11:14:49 +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

1 follower

Stats

Asked: 2021-04-01 05:08:59 +0200

Seen: 142 times

Last updated: Apr 01 '21