Alright, I am being asked to solve this problem:
Problem: For the vectors v = [0, one, one] and u = [one, one, one] over GF(2), find v + u and v + u + u.
I am stuck and I need some help. So what I assumed I need to do, is:
v = [0, one, one] = 0, 1, 1
u = [one, one, one] = 1, 1, 1
So:
v + u =
0,1,1
1,1,1 +
--------
1,0,0
Why? Because I am assuming that GF(2) is based on XOR. First question: is this correct?
Second:
v + u + u =
0,1,1
1,1,1
1,1,1 +
--------
?,?,?
I have no idea what to do. Is GF(2) the same as modulo 2 or should I also work with XOR here?
As you can see, I have just no clue what GF(2) essentially means / is and I can't use it correctly because of that.
Could someone help me with this please? I want to understand it.