"Source: Text/Geometry/CrvHyp.text";
"Line: 566";
"Date: Fri Sep 26 09:12:34 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Geometry/CrvHyp.text, line: 566
// Example: H137E3 ()
print "Example: H137E3";
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);
