"Source: Text/Geometry/CrvHyp.text";
"Line: 5965";
"Date: Thu Aug 18 16:02:10 2022";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/CrvHyp.text, line: 5965
// Example: H134E42 ()
print "Example: H134E42";
ei := GetEchoInput();
SetEchoInput(true);
P<x> := PolynomialRing(Rationals());                                 
C := HyperellipticCurve(x^5-7);                                     
Genus(C);
assert $1 eq 2;
J := Jacobian(C);                                                  
K := KummerSurface(J);                                             
K;
Points(K, [0,1,2]);                                                 
Points(K, [1,3,2]);
Points(K, [0,1,3]);
SetEchoInput(ei);
