On Thu, Oct 3, 2013 at 8:32 AM,  <gg.cherub...@gmail.com> wrote:
> How can I use "ellsearch" on the sage notebook online? It says it needs the 
> elldata0 package.
> I cannot install anything on the computer since I don't have the permission.
> I have PARI installed on my personal laptop and I installed elldata0 on it, 
> but when I am at work I don't have it.
>

You can use ellsearch in https://cloud.sagemath.com/ in several ways:

  1. Create an account, then login and...
  2. Create a project and open it.

A Terminal:

  3. Click +New then "Terminal" and type "gp" at the prompt.
  4. Use ellsearch in PARI:
? ellsearch("11a1")
%1 = ["11a1", [0, -1, 1, -10, -20], []]

A Sage/GP Worksheet:

  5. Use a Sage/GP worksheet -- click "+New", then "Sage Worksheet"
  6. Type this followed by shift+enter (no quotes): "%default_mode gp"
  7. In the next cell, type ellsearch("11a1")  followed by shift-enter.

A Pari script:

  8. Create a new file foo.gp by clicking "+New", naming it foo.gp,
then clicking "File".  (Yeah, notice that the is a PARI-aware syntax
highlighting!)
  9. In the file, type ellsearch("11a1")    (say).
 10. Load the file in the terminal or worksheet above with \r.

Of course, as John Cremona just said, ellsearch is just a way to
access the elliptic curve database that John Cremona made, so you
could also just use Sage directly itself, e.g.,

   EllipticCurve("11a1")

 -- William

-- 
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/groups/opt_out.

Reply via email to