"Source: Text/Geometry/CrvHyp.text";
"Line: 567";
"Date: Thu Aug 18 16:02:10 2022";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/CrvHyp.text, line: 567
// Example: H134E3 ()
print "Example: H134E3";
ei := GetEchoInput();
SetEchoInput(true);
P<x,y> := PolynomialRing(Rationals(),2);
f := 65537*x^8 + 131104*x^7*y + 115136*x^6*y^2 + 60928*x^5*y^3 + 
35840*x^4*y^4 + 60928*x^3*y^5 + 115136*x^2*y^6 + 131104*x*y^7 + 65537*y^8;
F,M,s := MinRedBinaryForm(f);
F;M;s;
s*F eq f^ChangeRing(M,Rationals());
SetEchoInput(ei);
