|
# handling of finite fields of size q <= 256 but not GF(q)
gap> f1 := AlgebraicExtension(GF(3), CyclotomicPolynomial(GF(3), 5));
<field of size 81>
gap> a := RootOfDefiningPolynomial(f1);
a
gap> mat := [[a]];
[ [ a ] ]
gap> DoImmutableMatrix(f1, mat, false);
[ [ a ] ]
[ Dauer der Verarbeitung: 0.14 Sekunden
(vorverarbeitet)
]
|