0

I need to find the inverse of generator of finite field $\mathbb{F}_{2^4}$ with irreducible polynomial , $f(x)=x^4+x+1$ i.e. if $g=0010$ is the generator of this field then how to find $g^{-1}$?

bzc
  • 8,622

1 Answers1

1

I think what you mean is: your field $GF_{2^4}$ is represented as $\mathbb F[\alpha]$ where $\mathbb F = \mathbb Z_2$ and $\alpha^4 + \alpha + 1 = 0$, and your generator is $\alpha$ (or it might be $\alpha^2$, depending on how you're representing things). Well, multiply that equation by $\alpha^{-1}$ and you see $\alpha^{3} + 1 + \alpha^{-1} = 0$, so $\alpha^{-1} = \alpha^3 + 1$. A similar idea will work if you're looking for $(\alpha^2)^{-1}$.

Robert Israel
  • 448,999