"Source: Text/Geometry/CrvCon.text";
"Line: 901";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Geometry/CrvCon.text, line: 901
// Example: H130E7 ()
print "Example: H130E7";
ei := GetEchoInput();
SetEchoInput(true);
P2<x,y,z> := ProjectiveSpace(Rationals(), 2);
C1 := Conic(P2, 23*x^2 + 19*y^2 - 71*z^2);
RationalPoints(C1 : Bound := 32);
C2 := Conic(P2, 23*x^2 - 19*y^2 + 71*z^2);
RationalPoints(C2 : Bound := 32);
C3 := Conic(P2, 23*x^2 - 17*y^2 - 71*z^2);
RationalPoints(C3 : Bound := 32);
BadPrimes(C1);
BadPrimes(C2);
BadPrimes(C3);
SetEchoInput(ei);
