DeRhamComputation/sage/drafty/draft.sage

9 lines
153 B
Python
Raw Normal View History

2023-02-23 12:26:25 +01:00
p = 2
2022-11-18 15:00:34 +01:00
m = 1
F = GF(p)
Rx.<x> = PolynomialRing(F)
f = x
2023-02-23 12:26:25 +01:00
C = superelliptic(f, m)
xx = C.x
AS = as_cover(C, [xx^5, xx^5 + xx^3])
print(AS.magical_element())