Dear Bhavin,

Thank you very much for your answer. It helps but still I do not know how 
> to see the answer to my exact problem.
> My exact problem is the see the graph of y^2=x(x+1)(2*x+1)/6. 
>

If you have constructed an elliptic curve (after scaling the variables), 
say E, then you can do

sage: E.plot()

Otherwise, you can try something like

sage: R.<x,y>=RR[]
sage: f=y^2-x*(x+1)*(2*x+1)/6
sage: C=Curve(f)
sage: C.plot()

Peter

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/d/optout.

Reply via email to