"Source: Text/Geometry/Scheme.text";
"Line: 3912";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Geometry/Scheme.text, line: 3912
// Example: H122E21 ()
print "Example: H122E21";
ei := GetEchoInput();
SetEchoInput(true);
A<x,y,z> := AffineSpace(Rationals(),3);
X := Scheme(A,[x*y^3,x^3*z]);
Dimension(X);
assert $1 eq 2;
IsReduced(X);
assert not $1;
PrimaryComponents(X);
ReducedSubscheme(X);
SetEchoInput(ei);
