-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwists-hyp.m
72 lines (61 loc) · 1.8 KB
/
twists-hyp.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
SetVerbose("IsGL2Equiv", 0);
counter := 0;
while counter lt 10^3 do
printf ".";
counter +:= 1;
repeat
p := RandomPrime(5);
until not p in [2,5];
FF := FiniteField(p);
R := PolynomialRing(FF);
f := R.1^5 - 1;
I := IgusaInvariants(f);
Cs := TwistsFromIgusaInvariants(I);
for i := 1 to #Cs do
for j := i + 1 to #Cs do
C1 := Cs[i];
C2 := Cs[j];
assert not IsIsomorphicHyperellipticCurves(C1, C2);
end for;
end for;
fs := TwistsOfHyperellipticPolynomials(f);
for i := 1 to #fs do
for j := i + 1 to #fs do
C1 := HyperellipticCurve(fs[i]);
C2 := HyperellipticCurve(fs[j]);
assert not IsIsomorphicHyperellipticCurves(C1, C2);
end for;
end for;
repeat
p := RandomPrime(5);
until not p in [2,3,5,7];
FF := FiniteField(p);
R := PolynomialRing(FF);
f := R.1^7 - 1;
I := ShiodaInvariants(f);
Cs := TwistsFromShiodaInvariants(I);
for i := 1 to #Cs do
for j := i + 1 to #Cs do
C1 := Cs[i];
C2 := Cs[j];
assert not IsIsomorphicHyperellipticCurves(C1, C2);
end for;
end for;
fs := TwistsOfHyperellipticPolynomials(f);
for i := 1 to #fs do
for j := i + 1 to #fs do
C1 := HyperellipticCurve(fs[i]);
C2 := HyperellipticCurve(fs[j]);
assert not IsIsomorphicHyperellipticCurves(C1, C2);
end for;
end for;
// Char 2?
fs := TwistsOfHyperellipticPolynomials([ f, 0 ]);
for i := 1 to #fs do
for j := i + 1 to #fs do
C1 := HyperellipticCurve(fs[i]);
C2 := HyperellipticCurve(fs[j]);
assert not IsIsomorphicHyperellipticCurves(C1, C2);
end for;
end for;
end while;