Question: Find a rational parametrization of the conic whose equation in homogeneous coordinates is:
$x^2+y^2-xy-z^2=0$
Hence find all rational numbers $x, y$ such that:
$x^2+y^2-xy=1$
It seems I don't quite understand the rational parametrization lecture notes. Can someone show me how to deal with this example so that I see how to approach those type of problems? I think I am familiar with the basic concepts
Basically what I've done is to reduce it to $-z_1^2+\frac{1}{2}z_2^2+\frac{3}{2}z_3^2=0$
R=QQ[s,t,x,y,z]
I=ideal(x-(s^2-t^2),y-t*(2*s-t),z-(s^2-s*t+t^2))
gens gb I
gives your equation $x^2+y^2-xy-z^2$ back as an element in the Gröbner basis. – Jan-Magnus Økland May 13 '17 at 08:03