"Source: Text/Geometry/AlgSrf.text";
"Line: 4019";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Geometry/AlgSrf.text, line: 4019
// Example: H126E20 ()
print "Example: H126E20";
ei := GetEchoInput();
SetEchoInput(true);
Q := RationalField();
QXYZ<X,Y,Z> := PolynomialRing(Q, 3);
F := (Y^2*Z-X^3)*(X^2*Z-Y^2*Z-Y^3);
NCs, EXs, DCs := ResolveProjectiveCurve(F); #NCs, #EXs, #DCs;
NCs[3];
NCs[3][1](X);
NCs[3][1](Y);
NCs[3][1](Z);
assert $1 eq 1;
SetEchoInput(ei);
