Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 11 years ago

Johan gravatar image

Create Morphism's between Finite Fields and VectorSpaces

Hallo,

I am interested in creating morphims between GF(2n+1)h1Huh2GF(2n) where Hu=x2i+x:xGF(2n+1) where gcd(i,n+1)=1. I am interested in constructing h1 and h2,

My attempt to create h1 is:


n = 4
i = 1
f = lambda x : x^(2^i) + x
Kn_1 = GF(2^(n+1),'x')
H_u = map(f, Kn_1)
hs = Hom(Kn_1,H_u)
pi = SetMorphism(Hom(Kn_1,Kn), lambda y : y^(2^i) + y)
pi(Kn_1.random_element()) in Kn
 

now hs is a set of morphism and h1hs. Can I get a (the) specific h1 from hs? My attempt is pi but 'pi(Kn_1.random_element()) in Kn' fails.

To construct h2 I have more success.


n = 4
i = 2
f = lambda x: x^(2^i) + x

Kn_1 = GF(2^(n+1),'x1')
Vn_1 = Kn_1.vector_space()
Sn_1 = Vn_1.subspace([Vn_1(f(u)) for u in Kn_1])

Kn = GF(2^n,'x')
Vn = Kn.vector_space()

h_a = Sn_1.basis_matrix().transpose()
 

Now ha:VnSn1 where Vn and Sn1 is vector space representation of GF(2n) and Hu. To get from GF(2n) to Vn and back I am good with But to create h2 I have no luck. My attempts to use


MatrixMorphism(Hom(Vn,Sn_1), Sn_1.basis_matrix().transpose())
 

but get errors with regards to the dimensions of the matrix.

Regards