"Source: Text/Geometry/AlgSrf.text";
"Line: 4019";
"Date: Mon Mar 29 22:30:18 2021";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/AlgSrf.text, line: 4019
// Example: H123E20 ()
print "Example: H123E20";
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);
