4

I would like to show that the polynomials \begin{equation} x^n - 2x^{n-1} - 1 \end{equation} are irreducible over $\mathbf{Z}$, whenever $n > 2$. I've used some computer algebra systems to check that this is true whenever $n < 1000$ but I couldn't find, for example, a substitution to allow me to apply Eisenstein's criterion.

Mark Bell
  • 410

1 Answers1

5

Hint:

First prove that $z^n - 2 z^{n-1} - 1$ has no zero for $|z| = 1$.

Then apply extended Rouche. We have $|z^n - 1| \le 2 < |z^n - 2z^{n-1} - 1| + |2 z^{n-1} |$ on the unit circle. So $z^n - 2z^{n-1} - 1$ has same number of zeros as $z^{n-1}$ inside the unit circle. i.e., $(n-1)$.

Hence if $z^n - 2z^{n-1} - 1 = f(z)g(z)$ at least one of $f$ and $g$ has all roots of modulus less than one. But then the constant coefficient has absolute value less than $1$. Which means that the constant term of that polynomial has to be zero, as it is an integer polynomial. Which gives a contradiction as zero is not a root of $z^n - 2z^{n-1} - 1$ either.

Edit: (In reference to E.Girgin's comment) Even in the equality case, one can still use Perron, as long as the polynomial has no zero on the unit circle. Just follow the above proof.

Shubhodip Mondal
  • 2,661
  • 14
  • 19
  • 1
    It's very easy to prove $z^n - 2 z^{n-1} - 1$ has no zero for $|z| = 1$ so +1 from me –  May 11 '16 at 07:47
  • 1
    Yes. Let me just write it down anyway. $z^n - 2z^{n-1} = 1$ for $|z| = 1$ implies $|z-2| = 1$. So, the only possibility is $z=1$, which is not a root. – Shubhodip Mondal May 11 '16 at 07:49
  • Thank you very much, this is an excellent argument. Do you know if there is something similar for $x^n - 3x^{n-2} - 1$ whenever $n > 3$? I think I can follow through most of the argument in this case but I finish with this polynomial has $n-2$ roots in the unit disk (and ones close to $\sqrt{3}$ and $-\sqrt{3}$) and so I can't conclude that it's irreducible.

    I should probably open a second question for this.

    – Mark Bell May 11 '16 at 08:32
  • 1
    For even $n$ I have an easy fix. Let $u$ be a root outside the unit circle. Then the only other root outside the unit circle has to be $-u$. Note that like before if you write $p(z) := z^{n} - 3 z^{n-2} - 1 = f(z) g(z)$, then both $f(z), g(z)$ has to be irreducible polynomials, one will have $u$ as a root and other will have $-u$. Then by uniqueness of minimal polynomial, we will have $f(z) = g(-z)$, implying that $f(0) = g(0)$. Contradiction since $p(0) = -1$. – Shubhodip Mondal May 11 '16 at 11:15