Let's consider $\mathbb{Z}_3[x]/(x^2 + x + 2)$. I want to answer the following questions:
- Prove that $\mathbb{Z}_3[x]/(x^2 + x + 2)$ is a field
- How many elements are there?
- What is the order of $s$, where $s$ is the equivalence class of $x$.
- Which are the multiplicative subgroups?
- Which are the solution of $X^2 + X + 2$?
My Solution
1) $\mathbb{Z}_3[x]/(x^2 + x + 2)$ iff $x^2 + x + 2$ is irreducible. I choose $p = 2$ and apply Eisenstein criterion.
2) The elements in this field are of the form: $as + b$ with $a$ and $b$ in $\mathbb{Z}^3$, so there are 9 elements.
3) Applying Lagrange theorem, the order of s can be: 1,2,4,8, because the multiplicative subgroup has 8 elements. I try everything : $s^1 = s \neq 1$, $s^2 = s^2 \neq 1$.
To find $s^4$, I need to do the following operation: $$\frac{s^4}{s^2 + s + 2}$$ The result is not 1 so the only possible choice is 8.
4) The multiplicative subgroups can have order 1,2,4,8. I exclude the one with order 1 and with order 8 because they are the trivial one. How can I find the subgroups of order 2 and 4?
5) I know that a solution is s, because by definition $s^2 + s + 2 = 0$. If that is a solution, I can write: $$ (x-s)(x - \alpha) = 0$$ with $\alpha$ as another solution. By multiplying, I obtain that $s\alpha = 2$, so $\alpha = 2 * s^{-1}$, with $s^{-1} = s^{8}$.
Is that all right as a solution? Could someone expand on point 3)? I mean: how can I better describe the subgroups?
This answer is with a big probability not wanted as it is, but for the small probability it does i will risk it. It uses a computer aided path, sage, and all computations are clear. (Sage is thinking highly structural from a mathematical point of view, so all code can be digested by a mathematician without further knowledge of sage and/or python.)
(1) We construct once for all times the general field (
GF) $F$ with $3^2$ elements, using the given "modulus" $X^2+X+2$.To see humanly that the polynomial is irreducible, it is enough to see it has no linear factor, i.e. no root in $\Bbb F_3$. Plugging in $\pm 1$ we obtain $1\pm 1-1\ne 0$, plugging in $0$ we get $-1\ne 0$. No roots in $\Bbb F_3$. So the polynomial $X^2+X-1$ is irreducible.
(2)
(3)
After seeing the above, it is easy to show the relation $x^4=-1$ in $\Bbb F_9$: $$ (X^2+X-1)(X^2-X-1)) = (X^2-1)^2-X^2= X^4 -2X^2-X^2+1 =X^4+1\ . $$ Since the order of $x$ divides $8=9-1=|F^\times|$, and it is not $4$, it is $8$.
(4) $x$ generates $\langle x\rangle=(F^\times, \cdot) \cong (\Bbb Z/8,+)$, each subgroup is cyclic.
(5) Vieta, the sum of the roots is $-1$, or...