I'm trying to use Sage on-line,but I meet some trouble with the code of it. I want to find the rational points on an ellipse curve,such as $$1 + 18 x + 81 x^2 + 44 x^3 = y^2,\tag1$$ I know that $(x,y)=(0,1)(1,\pm12)(-\frac{1}{11},0)$ are on the curve,but I don't know how to find more,so I try to solve it with the math-software Sage.
What should I input?Thanks in advance!
Edit: Multiply by $44^2$,we can difine the ellipse curve by this way,
E = EllipticCurve([0,81,0,44*18,44^2])
Then how to find the rational points on it?
E.rational_points(bound=1000)
took several days to return the output[(-4 : 0 : 1), (0 : -44 : 1), (0 : 1 : 0), (0 : 44 : 1), (44 : -528 : 1), (44 : 528 : 1)]
-- so knowing the mathematics in the answers below certainly helps. :-) – ShreevatsaR Jun 10 '13 at 06:41