February 2020
Beginner
621 pages
19h 34m
English
We want to graph the elliptic curve .
First, we create a string that contains the equation we wish to graph.
>> v=’y^2 - x*(x-1)*(x+1)’;
Next we use the ezplot command to plot the elliptic curve.
>> ezplot(v,[-1,3,-5,5])
The plot appears in Figure C.1. The use of in the preceding command is to define the limits of the -axis and -axis in the plot.

Add the points (1,3) and (3,5) on the elliptic curve .
>> addell([1,3],[3,5],24,13,29)ans =26 1
You can ...
Read now
Unlock full access