This is the intersection of two quadratic surfaces in
This is the intersection of a quadratic surface and a plane, hence a quadratic curve. (Exercise - 15 minutes trying this further; presentation of solution.)
sage: E = EllipticCurve([-36,0]) sage: P = E([...]) sage: 2*P
in three-dimensional space.
in three-dimensional space.
(You'll have to let
You should be able to do all this by hand. But if you want to use a computer, here's an example of how in SAGE:
sage: X = gp('X'); Y = gp('Y'); x_1 = gp('x_1') sage: y_1 = gp('y_1'); n = gp('n') sage: print (Y^2).subst(Y,x_1+y_1^2).subst(X, y_1) sage: print (4*n^2 + X^4).subst(Y,x_1+y_1^2).subst(X, y_1) x_1^2 + 2*y_1^2*x_1 + y_1^4 y_1^4 + 4*n^2(In SAGE the command gp('stuff') makes a formal variable, and subst allows you to do formal substitutions.)
William Stein 2006-07-07