ca)
Write down the matrix whose rows are the given codewords:
(002002202001101010100121201000201221)
Now reduce this matrix to row echelon form. That means the first non-zero entry in each row is further right than in the row above it and that entry is a 1 and there are only zeros above and below that entry. Remove any rows made up of all zeros.
From the matrix above, we obtain:
G=(100001001001000101000011)
b)
A generator matrix for a code is a standard generator matrix if it is of the form (Ik|A), that is, the k×k identity matrix attached to an arbitrary matrix A.
If a code has a standard generator matrix, the row reduced echelon form will be it.
G is not of the required form, so it is not a standard generator matrix.
c)
To encode a data vector v, multiply it on the right by the generator matrix for the code.
So we have:
(0,0,2,0)(100001001001000101000011)=(0,0,0,2,0,2)(0,0,0,2)(100001001001000101000011)=(0,0,0,0,2,2)(2,0,1,2)(100001001001000101000011)=(2,0,0,1,2,2)
That is,
0020↦0002020002↦0000222012↦200122
d)
We are looking for a data vector of length 4 which is encoded as c=000011.
Note that, since G is in reduced echelon form, the leading non-zero entry in each row is 1, so the elements of the data vector are the digits of c corresponding to each of the columns of G containing a leading non-zero entry. The leading 1s in G are in columns 1, 3, 4, 5. The corresponding digits of c give the data vector 0001.
We can confirm that this vector is encoded as c:
(0,0,0,1)(100001001001000101000011)=(0,0,0,0,1,1)