"Source: Text/Ring/FldFunG.text";
"Line: 232";
"Date: Thu Jun 16 15:04:46 2022";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Ring/FldFunG.text, line: 232
// Example: H45E1 ()
print "Example: H45E1";
ei := GetEchoInput();
SetEchoInput(true);
R<x> := FunctionField(GF(5));
P<y> := PolynomialRing(R);
F<alpha> := FunctionField(y^2 - 1/x);
F;
R<x> := PolynomialRing(GF(5));
P<y> := PolynomialRing(R);
F<alpha> := FunctionField(x*y^2 - 1);
F;
R<x> := FunctionField(GF(5));
P<y> := PolynomialRing(R);
F<alpha> := ext< R | y^2 - 1/x >;
F;
SetEchoInput(ei);
