1
0
mirror of https://github.com/kalmarek/SmallHyperbolic synced 2024-07-27 21:10:31 +02:00

Generators for p = 41.

This commit is contained in:
Stefan Witzel 2020-09-03 14:11:29 +02:00
parent b8aa8be0b3
commit c266d49c59

View File

@ -16,6 +16,15 @@ function SL2p_gens(p)
@assert isone(a^10) @assert isone(a^10)
@assert isone(b^10) @assert isone(b^10)
a, b
end
elseif p == 41
a, b = let
a = SL₂{p}([0 28; 19 35])
b = SL₂{p}([38 27; 2 9])
@assert isone(a^10)
@assert isone(b^10)
a, b a, b
end end
elseif p == 109 elseif p == 109