1 | initial version |
Essentially you are trying to compute the image of Frobenius endomorphism of 19*v^2 + 49*v + 8
in the field GF(67^3)
with the modulus v^3+2
. You can define it as
R.<v> = PolynomialRing(GF(67))
K.<w> = GF( 67^3, name='w', modulus=v^3 + 2 )
Frob = K.frobenius_endomorphism()
print(Frob)
to get
Frobenius endomorphism w |--> w^67 on Finite Field in w of size 67^3
Then it remains to compute Frob( 19*v^2 + 49*v + 8 )
, which gives 15*w^2 + 4*w + 8
.
2 | No.2 Revision |
Essentially you are trying to compute the image of Frobenius endomorphism of on 19*v^2 + 49*v + 8
in the field GF(67^3)
with the modulus v^3+2v^3 + 2. (i.e. defined as $GF(67)[v]/\langle v^3+2 \rangle$). You can define it as
R.<v> = PolynomialRing(GF(67))
K.<w> = GF( 67^3, name='w', modulus=v^3 + 2 )
Frob = K.frobenius_endomorphism()
print(Frob)
to get
Frobenius endomorphism w |--> w^67 on Finite Field in w of size 67^3
Then it remains to compute Frob( 19*v^2 + 49*v + 8 )
, which gives 15*w^2 + 4*w + 8
.
3 | No.3 Revision |
Essentially you are trying to compute the image of Frobenius endomorphism on 19*v^2 + 49*v + 8
in the field GF(67^3)
with the modulus v^3 + 2
(i.e. defined as $GF(67)[v]/\langle $\mathrm{GF}(67)[v]/\langle v^3+2 \rangle$). You can define it as
R.<v> = PolynomialRing(GF(67))
K.<w> = GF( 67^3, name='w', modulus=v^3 + 2 )
Frob = K.frobenius_endomorphism()
print(Frob)
to get
Frobenius endomorphism w |--> w^67 on Finite Field in w of size 67^3
Then it remains to compute Frob( 19*v^2 + 49*v + 8 )
, which gives 15*w^2 + 4*w + 8
.
4 | No.4 Revision |
Essentially you are trying to compute the image of Frobenius endomorphism on 19*v^2 + 49*v + 8
in the field $\mathrm{GF}(67^3) \cong GF(67^3)
with the modulus \mathrm{GF}(67)[v]/\langle v^3+2 v^3 + 2
(i.e. defined as $\mathrm{GF}(67)[v]/\langle \rangle$). \rangle$. You can define it as
R.<v> = PolynomialRing(GF(67))
K.<w> = GF( 67^3, name='w', modulus=v^3 + 2 )
Frob = K.frobenius_endomorphism()
print(Frob)
to get
Frobenius endomorphism w |--> w^67 on Finite Field in w of size 67^3
Then it remains to compute Frob( 19*v^2 + 49*v + 8 )
, which gives 15*w^2 + 4*w + 8
.