"Source: Text/Geometry/ModFrm.text";
"Line: 2478";
"Date: Tue Jun  7 22:27:14 2016";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/ModFrm.text, line: 2478
// Example: H141E20 ()
print "Example: H141E20";
ei := GetEchoInput();
SetEchoInput(true);
S := CuspidalSubspace(ModularForms(Gamma0(34)));
Relations(S, 4, 20);
// a, b, and c correspond to the cusp forms S.1, S.2 and S.3:
S.1;
S.2;
S.3;
S := CuspidalSubspace(ModularForms(Gamma0(75)));
R := Relations(S, 2, 20); R;
// NOTE: It is much faster to compute in the power 
// series ring than the ring of modular forms!
a, b, c, d, e := Explode([PowerSeries(f,20) : f in Basis(S)]);
a*c - b^2 - d^2 - 4*e^2;
SetEchoInput(ei);
