It's my first time doing finite field arithmetics. As an exercise, I want to find $0111/1111 \in GF(16)$ generated by $\Pi(\alpha)=1+\alpha +\alpha^4$ that is an irreducible polynomial.
In polynomial form we have:
- $0111 \rightarrow \alpha+\alpha^2+\alpha^3$
- $1111 \rightarrow 1+\alpha+\alpha^2+\alpha^3$
If I perform the polynomial division, I obtain $-1$ (that is the same result obtained writing $0111 \equiv -1 \pmod {1111}$).
How can I compute this result $-1$ in the right element of the field? Or perhaps this some kind of sign that the result $\not \in GF(16)$?