DeRhamComputation/sage/drafty/draft.sage

25 lines
624 B
Python
Raw Normal View History

p = 5
2023-02-24 13:51:49 +01:00
m = 2
2022-11-18 15:00:34 +01:00
F = GF(p)
Rx.<x> = PolynomialRing(F)
#f = (x^3 - x)^3 + x^3 - x
f = x^3 + x
f1 = f(x = x^5 - x)
2023-02-23 12:26:25 +01:00
C = superelliptic(f, m)
C1 = superelliptic(f1, m)
B = C.crystalline_cohomology_basis(prec = 100, info = 1)
B1 = C1.crystalline_cohomology_basis(prec = 500, info = 1)
def crystalline_matrix(C, prec = 50):
B = C.crystalline_cohomology_basis(prec = prec)
g = C.genus()
p = C.characteristic
Zp2 = Integers(p^2)
M = matrix(Zp2, 2*g, 2*g)
for i, b in enumerate(B):
M[i, :] = vector(autom(b).coordinates(basis = B))
return M
#M = crystalline_matrix(C, prec = 150)
#print(M)
#print(M^3)