"Source: Text/Ring/FldAC.text";
"Line: 972";
"Date: Fri Sep 26 12:10:11 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Ring/FldAC.text, line: 972
// Example: H44E4 ()
print "Example: H44E4";
ei := GetEchoInput();
SetEchoInput(true);
A := AlgebraicClosure();  
x := Sqrt(A!2) + Sqrt(A!-3);  
y := Sqrt(A ! (-1 + 2*Sqrt(A!-6)));  
A;
x;
y;
x eq y; // depends on choice of square roots
Conjugates(x);
y in Conjugates(x);
assert $1;
P<z> := PolynomialRing(RationalField());
MinimalPolynomial(x);
MinimalPolynomial(y);
assert $1 eq $2;
SetEchoInput(ei);
