"Source: Text/Geometry/CrvCon.text";
"Line: 901";
"Date: Tue Jan 21 11:00:40 2020";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/CrvCon.text, line: 901
// Example: H127E7 ()
print "Example: H127E7";
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);
