1

Now I thought I had this understood, but apparently not. So I did some reduction and got a characteristic polynomial of the form:

$$-x^{3} + 2x^{2} + x - 2 = 0$$

Where I'm just using $x$ in place of $\lambda$ for typing purposes.

In my first attempt at solving it I went through this process:

$$-x(x^{2}-2x-1) = 2 \\ x = -2\ \text{or} \ (x^{2}-2x-1) = 2$$ From which I could rewrite (so I thought) as

$$x^{2}-2x-3 = 0 $$

From which we could factor to get

$$(x-3)(x+1)$$

Fortunately there is a solution I saw which gave the following factorization:

$$(x-1)(x-2)(x+1) = 0$$

Now I re worked this and the only way I could get this solution was by "guessing a root (using rational zeros)", then dividing my cubic polynomial, and finally factoring the quadratic that remains. Which for example would be of the form:

$$(x-1)(x^{2}-x-2) = 0$$

Now I know I should know the reason why but can't remember, but why didn't my first approach work? And what is a more efficient way of getting this factorization besides "guessing roots".

J. W. Tanner
  • 60,406
D.C. the III
  • 5,619

1 Answers1

1

What went wrong with your first attempt is that $a\times b=2$ does not imply that $a=2$ or $b=2$, the way $a\times b=0$ implies $a=0$ or $b=0$ in an integral domain (such as a field). For further explication of that important point, see this answer.

Regarding how to find rational roots of a polynomial, see the rational root theorem, which says they will be factors of the constant term divided by factors of the leading coefficient; in your case the candidates would be $\pm1$ or $\pm2$.

J. W. Tanner
  • 60,406
  • Also thanks for the assistance. – D.C. the III Dec 01 '20 at 03:09
  • Actually to build on the rational roots idea, this means the only other way I could solve for the roots would have been to apply the equivalent of the quadratic formula, but the one used for 3rd degree polynomials. Does it even have a name? – D.C. the III Dec 01 '20 at 03:11
  • 2
    https://en.wikipedia.org/wiki/Cubic_equation#General_cubic_formula is what you're looking for I think – mi.f.zh Dec 01 '20 at 03:18