I have a polynomial: $x^6 + x^4 + x^3 + x + 1$, and I need to factor it over $\mathbb{F}_2$, $\mathbb{F}_4$ and $\mathbb{F}_{16}$. I need to do it manually.
I wasn't even able to factor it over $\mathbb{F}_2$. I found a list of all irreducible polynomials of degree $\leqslant 5$ (here) and tried to divide the original polynomial by each of those, but with each one of them I got a remainder not equal to 0. So I either made a mistake with division or with the way I tried to solved this problem.
I have tried to read about various factorization algorithms, such as Berlekamp's algorithm, but they seem overcomplicated for this particular problem. I think there should be an easier approach to this problem.
In general, how to I try to come up with the factors? How do I know which polynomials are irreducible and which irreducible polynomials should I "look for" in my given polynomial?