While studying GF multiplication in the AES algorithm, I came across the following paper:
In section 4.2 of this paper, it deals with the multiplication of two field elements in $GF((2^n)^2)$ and uses the following expression: $$C(x)=A(x)B(x)~mod~P(x)=[a_0b_0+p_0a_1b_1]+x[(a_0+a_1)(b_0+b_1)+a_0b_0]$$ For $n=2$, $p={10}_2$
The problem here is that when I calculate $2\otimes2$ in $GF((2^2)^2)$, I get $3$ using the above expression. As far as I know, $2\otimes2$ is $4$, but I don't know if this expression is wrong or if my knowledge is wrong, hence my question.
Calculation of mine based on the equation:
For $A=\{a_1,a_0\}=\{0010\}$ and $B=\{b_1,b_0\}=\{0010\}$, $$a_0b_0=\{11\}$$ $$a_1b_1=\{00\}$$ $$a_0+a_1=\{10\},~b_0+b_1=\{10\}$$
Thus,
$$a_0b_0+p_0a_1b_1=\{11\}+\{10\}\otimes\{00\}=\{11\}$$ $$(a_0+a_1)(b_0+b_1)+a_0b_0=\{10\}\otimes\{10\}+\{11\}=\{11\}+\{11\}=\{00\}$$
Therefore, $$C(x)=\{11\}+x\{00\}$$