"Source: Text/Geometry/Scheme.text";
"Line: 3866";
"Date: Fri May 26 16:23:18 2023";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/Scheme.text, line: 3866
// Example: H119E21 ()
print "Example: H119E21";
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);
