"Source: Text/Ring/FldFunG.text";
"Line: 2234";
"Date: Fri Sep 26 13:15:42 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Ring/FldFunG.text, line: 2234
// Example: H46E17 ()
print "Example: H46E17";
ei := GetEchoInput();
SetEchoInput(true);
// no-test
F<t> := FunctionField(GF(5));
P<x> := PolynomialRing(F);
f := x^6 + (2*t + 3)*x^4 + 3*t*x^3 + (3*t^2 + 1)*x^2 + 
(4*t^2 + 2*t)*x + 4*t^3 + 3*t^2 + 4*t;
K, R := SolveByRadicals(f:Name := "K.");
K:Maximal;
[ Evaluate(f, x) eq 0 : x in R];
SetEchoInput(ei);
