2024-02-08 20:25:10 +01:00
|
|
|
p = 3
|
|
|
|
F = GF(3)
|
2024-01-03 10:06:35 +01:00
|
|
|
Rx.<x> = PolynomialRing(F)
|
2024-02-08 20:25:10 +01:00
|
|
|
P1 = superelliptic(x^2 + 1, 1)
|
|
|
|
fct1 = (P1.x)^2
|
|
|
|
fct2 = fct1 + (P1.x)/(P1.y - P1.x)
|
|
|
|
fct3 = (P1.x)^4
|
|
|
|
C = heisenberg_cover(P1, [fct1, fct2, fct3], prec=300)
|
2024-01-03 10:06:35 +01:00
|
|
|
print(C)
|
2024-02-08 20:25:10 +01:00
|
|
|
a, b, c = heisenberg_group_action_matrices_holo(C)
|