I am new in sage and I have a problem. I am trying to plot the curve f(x,y)=y^2 - x^2*(x+3), but it never works. Can somebody help ?
I tried this:
sage: E = EllipticCurve([0,3,0,0,0]);
sage: E;
and it gives the error ArithmeticError: invariants (0, 3, 0, 0, 0) define a singular curve.
sage: E = EllipticCurve([0,3,0,0,0]); sage: E;and it gives the errorArithmeticError: invariants (0, 3, 0, 0, 0) define a singular curve- user3233804