Factoring 3rd degree polynomial for eigenvalues

hops1
Messages
24
Reaction score
1

Homework Statement


Was given a matrix
To find the eigenvalues I set up the characteristic equation
[-1-x | 7 | -5 ]
[-4 | 11-x | -6 ]
[-4 | 8 | -3-x]

With some dirty work I got this bad boy out, which I'm having trouble factoring
-x3+7x2-15x+9

Homework Equations


Looking for method to factor it, without aid of calculator
Or if there's a better way to determine the equation which will give me the factors without setting up a polynomial

The Attempt at a Solution


I tried the grouping method but that doesn't work since all I end up with is
-x2(x-7)+3(5x-3)
 
Physics news on Phys.org
hops1 said:

Homework Statement


Was given a matrix
To find the eigenvalues I set up the characteristic equation
[-1-x | 7 | -5 ]
[-4 | 11-x | -6 ]
[-4 | 8 | -3-x]

With some dirty work I got this bad boy out, which I'm having trouble factoring
-x3+7x2-15x+9


Homework Equations


Looking for method to factor it, without aid of calculator
Or if there's a better way to determine the equation which will give me the factors without setting up a polynomial

The Attempt at a Solution


I tried the grouping method but that doesn't work since all I end up with is
-x2(x-7)+3(5x-3)

Use the rational root theorem on the polynomial ##x^3 - 7x^2 + 15 x - 9##; that is, look for roots among the + or - integer factors of -9.
 
Ray Vickson said:
Use the rational root theorem on the polynomial ##x^3 - 7x^2 + 15 x - 9##; that is, look for roots among the + or - integer factors of -9.

Thanks I forgot about that theorem.
But how do I rule out the negative or positive integers?
 
You can rule out a potential root r by discovering that x - r is not a factor of your cubic polynomial. The rational root theorem says that the possible rational roots for your cubic are 1, -1, 3, -3, 9, and -9.

Use either long division or synthetic division to determine whether x - 1, x - (-1), x - 3, x - (-3), x - 9, or x - (-9) are factors. If one of these is a factor, the remainder will be zero. If it's not a factor, the remainder will be nonzero.
 
Mark44 said:
You can rule out a potential root r by discovering that x - r is not a factor of your cubic polynomial. The rational root theorem says that the possible rational roots for your cubic are 1, -1, 3, -3, 9, and -9.

Use either long division or synthetic division to determine whether x - 1, x - (-1), x - 3, x - (-3), x - 9, or x - (-9) are factors. If one of these is a factor, the remainder will be zero. If it's not a factor, the remainder will be nonzero.

Thanks
 
hops1 said:
Thanks I forgot about that theorem.
But how do I rule out the negative or positive integers?

In this case you can put x = -y to find that the polynomial has the form p(x) = -q(y), where ##q(y) = y^3 + 7 y^2 + 15 y +9##. Obviously, q(y) does not have any positive roots (all its coefficients are > 0), so p(x) does not have any negative roots. This type of trick does not always work, but it happens to be OK in this example. Even if it did not work, you could just try out all the factors of -9 to see if one of them sets p(x) = 0. As soon as you find one that works you can stop checking and start again with the resulting quadratic remaining factor.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top