https://github.com/edgarcosta/endomorphisms
Raw File
Tip revision: 15e33f131739bd3ee899d9f2e8f61572fbd9c124 authored by Edgar Costa on 02 February 2024, 20:53:21 UTC
Merge pull request #70 from edgarcosta/DivisorFromMatrixAmbientSplit
Tip revision: 15e33f1
drew.m
//SetVerbose("EndoFind", 3);

F := RationalsExtra(1000);
R<x> := PolynomialRing(F);

f := 5*x^6-15*x^5+25*x^4-25*x^2+15*x-5;
f := 4*x^6-9*x^5+20*x^4-20*x^2+9*x-4;
C := HyperellipticCurve(f);

print HeuristicEndomorphismAlgebra(C);
print HeuristicEndomorphismAlgebra(C : Geometric := true); 


back to top