"Source: Text/Geometry/CrvCon.text";
"Line: 984";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Geometry/CrvCon.text, line: 984
// Example: H130E8 ()
print "Example: H130E8";
ei := GetEchoInput();
SetEchoInput(true);
P2<x,y,z> := ProjectiveSpace(Rationals(), 2);
C1 := Conic(P2, x^2 + 3*x*y + 2*y^2 - 2*z^2);
p := C1![0, 1, 1];
IsReduced(p);
assert not $1;
C0, m := ReducedLegendreModel(C1);
C0;
m(p);
IsReduced(m(p));
assert not $1;
Reduction(m(p));
Reduction(m(p)) @@ m;
IsReduced($1);
assert $1;
SetEchoInput(ei);
