Next: Some simple codes
Up: Coding theory exercises using
Previous: Background on finite fields
  Contents
  Index
The GAP code
vecs:=[[1,0,0],[1,1,1],[0,1,1]];
V:=VectorSpace(Rationals,vecs);
GeneratorsOfVectorSpace(V);
B:=Basis(V);
dim:=Length(B);
constructs the vector space over
spanned by
the vectors
, finds a basis, and computes its
dimension.
Exercise 3.11.1
Construct the vector space over

spanned by
the vectors

, find a basis, and compute its
dimension. Do the same, but with

replaced by

.
David Joyner
2002-08-23