"Source: Text/Geometry/Crv.text";
"Line: 4939";
"Date: Thu May 12 11:26:16 2022";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/Crv.text, line: 4939
// Example: H121E29 ()
print "Example: H121E29";
ei := GetEchoInput();
SetEchoInput(true);
A<x,y> := AffineSpace(GF(2),2);
C := Curve(A,x^8*y^3 + x^3*y^2 + y + 1);
FA<X,Y> := FieldOfFractions(CoordinateRing(A));
FC<a,b> := FunctionField(C);
Poles(C,X/Y);               
Poles(C,a/b);               
$1 eq $2;
assert $1;
SetEchoInput(ei);
