Suppose we have an elliptic curve $y^2+a_1xy+a_3y = x^3+a_2x^2+a_4x+a_6$, we define it on SAGEMATH by E = EllipticCurve([a1,a2,a3,a4,a6]). Suppose the elliptic curve is given in a cubic equation form where the leading co-efficient is not equal to $1$, e.g., $~y^2 = (2x+1)(3x+1)(4x+1)$. Then how can we define this curve in SAGEMATH in its original form (not taking any isomorphism). Also how can we find all the integer points on it?
2026-03-27 14:39:41.1774622381
Defining an elliptic curve by a cubic equation
252 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
Homogenizing its original curve, we get $ Y^2 Z = \left( 2X +Z \right) \left( 3X+Z \right) \left( 4X+Z \right) $. Performing the change of coordinates $ Z = 24 Z' $ e dehomogenizing the coordinate $ Z' $, we get $$ E' : y'^2 = \left( x' + 12 \right) \left( x' + 8 \right) \left( x' + 6 \right), $$ where $ \left( x', y' \right) = \left( \frac{X}{Z'}, \frac{Y}{Z'} \right) $.
Then $$ \left( x,y \right) = \left( \frac{X}{Z}, \frac{Y}{Z} \right) = \left( \frac{X}{24Z'}, \frac{Y}{24Z'} \right) = \left( \frac{x'}{24}, \frac{y'}{24} \right).$$
Therefore, we are looking for points integers in $ E' $ such that, both the coordinates are divisible by 24.
Running the SageMath code:
it return all integers points in $ E'$ (with coordinates $ \left[ X:Y:Z' \right] $):
Therefore, the only the integers points with both the coordinates divisible by 24 are $ \left( x', y'\right) = \left( 0 , \pm 24 \right) $.
Finally, the only integer points in our original curve are $ \left( 0, \pm 1 \right) $.