Is there any technique to prove that x+1 is a generator of multiplicative group of finite field $ \mathbb F = \mathbb Z _{3}[x] / _ {x ^3 - x + 1} $ ?
What I know is that F consists of 27 elements like $ 1,2,x, x+1, x+2, 2x, ... , 2x^2 + 2x + 2$. I tried to calculate it "brute-force" way but it's way too much time consuming. Is there a fast way to do this?
I tried following way:
$(x+1)^1 mod (x^3 - x + 1 )= x +1 $
$(x+1)^2 mod (x^3 - x + 1 ) = x^2 + 2x + 1$
$ (x+1)^3 mod (x^3 - x + 1 ) = x^3 + 3x^2 + 3x + 1 = x^3 + 1 = (x^3 -x + 1) +x = x $
Thanks for all answers.