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)$?
As it happens, the discrete logarithm table for $GF(16)$ that I prepared for referrals like this, uses the same minimal polynomial of the primitive element. The only difference is that in the linked thread I denote by $\gamma$ the element that you refer to as $\alpha$.
Anyway, consulting that table, we see that $$1111=1+\alpha+\alpha^2+\alpha^3=\alpha^{12},$$ and $$ 0111=\alpha+\alpha^2+\alpha^3=\alpha^{11}. $$ Therefore $$ \begin{aligned} \frac{0111}{1111}&=\frac{\alpha^{11}}{\alpha^{12}}=\frac{\alpha^{11}}{\alpha^{12}}\cdot\frac{\alpha^3}{\alpha^3}\\ &=\frac{\alpha^{14}}{\alpha^{15}}=\frac{\alpha^{14}}1\\ &=\alpha^{14}=\alpha^3+1=1001. \end{aligned} $$