"Source: Text/Geometry/Scheme.text";
"Line: 1590";
"Date: Fri May 26 16:23:18 2023";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/Scheme.text, line: 1590
// Example: H119E13 ()
print "Example: H119E13";
ei := GetEchoInput();
SetEchoInput(true);
P3<x,y,z,t> := ProjectiveSpace(Rationals(),3);
L := Scheme(P3,[z,t]); //the line to be blown up
X,mp := Blowup(P3,L);
P<[a]> := Ambient(X); X;
Y := L @@ mp;  // the inverse image of L
Dimension(Y);
assert $1 eq 2;
MinimalBasis(Ideal(Y));
SetEchoInput(ei);
