3

Are the units of the quotient ring $\mathbb{F}_2[x]/\langle x^k+1 \rangle$ known in general, where $\mathbb{F}_2$ is the finite field with two elements? I'm specifically interested in the case where $k$ is divisible by two, such as say $k=8$, or $k=12$.

If so, can they be constructed easily? I'd be grateful if you could provide a few examples.

clan
  • 53

1 Answers1

3

As Jyrki Lahtonen points out in the comments, one way to determine whether or not a particular polynomial $p(x)$ is a unit in the quotient is to compute the greatest common divisor of $p(x)$ and $x^k+1$. If it's $1$, then it's a unit. Otherwise it will be something other than $1$, and will not be a unit.

That can be computationally intense though, so I'm also going to recommend a quick trick that reliably produces units.

When $2$ divides $k$, we can be sure that $(x^k+1)=(x^{\frac{k}{2}}+1)^2$, and this means that the ring has a nonzero Jacobson radical. (The radical must contain at least $I=(x^{\frac{k}{2}}+1)$.) Then you can be assured that everything in $\{1+i\mid i\in I\}$ is a unit.

To retrieve the full Jacobson radical and maximize the number of units produced this way, you'd have to factor $x^k+1$ completely over $F_2$ and then look at the ideal generated by the product of prime divisors of $x^k+1$.

So for example in $F_2[x]/(x^2+1)$, you have a ring of four elements whose radical is $(x+1)$. Then $x+1$ and $0$ are nonunits, while $x$ and $1$ are units.

In $F_2[x]/(x^4+1)$, you have $x^4+1=(x+1)^4$, and in fact the radical is again $(x+1)$ and that everything inside the radical is nilpotent, and everything outside is a unit.

In $F_2[x]/(x^6+1)$ we have a first factorization that isn't trivial. We have $x^6+1=(x^3+1)^2=(x+1)^2(x^2+x+1)^2$. The radical is then $(x^3+1)$. Nothing in the radical is a unit, and $1+x$ for any $x$ in the radical is a unit. There can be other units and nonunits outside of these.

rschwieb
  • 153,510
  • This is great. Thanks for the help. I will have to brush up on the Jacobson radical (and my factorisations even!) – clan Dec 06 '13 at 16:10
  • 1
    +1: Just wanted to add a general observation that was left out. The coset of a polynomial $p(x)$ in the quotient ring $\Bbb{F}_2[x]/\langle x^k+1\rangle$ is a unit, iff $\gcd(p(x),x^k+1)=1$. This follows from Bezout's identity and the fact that the ring $\Bbb{F}_2[x]$ is Euclidean. – Jyrki Lahtonen Dec 06 '13 at 17:27
  • @JyrkiLahtonen Bah of course :) I don't know if you can tell from the solution, but I had general group rings in mind. Long division definitely deserves a mention, although it'll be computationally more intense. I'm going to add a blurb: thanks for the comment. – rschwieb Dec 06 '13 at 17:31
  • I can see the only if, but I can't see why it is definitely a unit if the gcd is 1. Could you please elaborate on the result? – clan Dec 06 '13 at 21:51
  • 1
    Sorry, I found this myself: http://math.stackexchange.com/questions/364878/bezouts-identity-in-fx – clan Dec 06 '13 at 21:55