Finding Eigenvalues for 3x3 Matrix

  • Thread starter Thread starter geft
  • Start date Start date
  • Tags Tags
    Eigenvalues
Click For Summary

Homework Help Overview

The discussion revolves around finding the eigenvalues of a 3x3 matrix, specifically through the characteristic polynomial derived from the determinant of the matrix minus a scalar multiple of the identity matrix.

Discussion Character

  • Exploratory, Mathematical reasoning, Assumption checking

Approaches and Questions Raised

  • Participants explore the characteristic polynomial and discuss factoring techniques to find eigenvalues. There are questions about the methods for solving cubic polynomials and the rationale behind identifying specific roots.

Discussion Status

Multiple approaches to factor the polynomial are being discussed, with some participants questioning the correctness of the initial polynomial setup. There is an ongoing exploration of how to verify potential roots and the implications of the rational root theorem.

Contextual Notes

Participants note the importance of checking calculations and the potential for carelessness in polynomial manipulation. The discussion also highlights the constraints of working with cubic equations and the need for careful coefficient comparison.

geft
Messages
144
Reaction score
0
[tex] \left(<br /> \begin{array}{ccc}<br /> 3 - \lambda & 1 & -1 \\<br /> -4 & 2 - \lambda & 2 \\<br /> -2 & 2 & 2 - \lambda<br /> \end{array}<br /> \right)[/tex]

[tex](3 - \lambda) \left| <br /> \begin{array}{cc} 2 - \lambda & 2 \\ <br /> 2 & 2 - \lambda<br /> \end{array}<br /> \right| + 4 \left|<br /> \begin{array}{cc} 1 & -1 \\ <br /> 2 & 2 - \lambda<br /> \end{array}<br /> \right| - 2 \left|<br /> \begin{array}{cc} 1 & -1 \\ <br /> 2 - \lambda & 2<br /> \end{array}<br /> \right|[/tex]

[tex]det(A - \lambda I) = (3 - \lambda)[(2 - \lambda)(2 - \lambda) - 4] + 4[(2 - \lambda) + 2] - 2[4 - \lambda] = 0[/tex]

[tex]-3x^3 + 7x^2 -14x + 8 = 0[/tex]

?
 
Physics news on Phys.org
You can factor out a [tex]\lambda - 4[/tex] to determine one eigenvalue.
 
Can you elaborate? I don't know how to work out cubic polynomials.
 
pengwuino means that 4 is a solution to the charcteristic equation, so you can re-write it as

[tex]-3x^3 + 7x^2 -14x + 8 = (\lambda -4)(ax^2 +bx + c) = 0[/tex]

multiply out & equate co-efficients
 
lanedance said:
pengwuino means that 4 is a solution to the charcteristic equation, so you can re-write it as

[tex]-3x^3 + 7x^2 -14x + 8 = (\lambda -4)(ax^2 +bx + c) = 0[/tex]

multiply out & equate co-efficients

Yes, but I want to know how he got that 4.
 
test that putting 4 into your equation gives 0
 
Never mind. Somehow I solved it by not opening too many brackets.

[tex](3-x)((2-x)(2-x)-4)+4((2-x)+2)-2(4-x)[/tex]
[tex](3-x)(4-4x+x^2-4)+4(4-x)-2(4-x)[/tex]
[tex](3-x)(-4x+x^2)+(4-2)(4-x)[/tex]
[tex](3-x)(-x)(4-x)+2(4-x)[/tex]
[tex](3-x)(2-x)(4-x)[/tex]
 
geft said:
Yes, but I want to know how he got that 4.

in general I don't think its that easy, though you could probably attempt polynomial long division, one trick is say you have the following polynomial and p is a factor

[tex]ax^3 + bx^2 + cx + d = (x+p)(qx^2 + rx + s)[/tex]

multplying out gives
[tex]ax^3 + bx^2 + cx + d = (x+p)(qx^2 + rx + s) = qx^3 + (pq +r)x^2 (pr+s)x + ps[/tex]

note by equating coefficients
[tex]p = \frac{d}{s}[/tex]

so if there are integer factors and everything stays nice, p must divide d - giving options here of 8,4,2,1,-1,-2,-4,-8. You could test these reasonably quickly to see if any work

in your simplification step though you could have done the following, though not exactly obvious
[tex]det(A - \lambda I) = (3 - \lambda)[(2 - \lambda)(2 - \lambda) - 4] + 4[(2 - \lambda) + 2] - 2[4 - \lambda] = 0[/tex]

[tex] = (3 - \lambda)[(\lambda^2-4 \lambda ] - 4[(\lambda-4)] + 2[\lambda-4] = 0[/tex]

[tex] = (3 - \lambda)[(\lambda-4 )\lambda ] - 4[(\lambda-4)] + 2[\lambda-4] = 0[/tex]
 
geft said:
Never mind. Somehow I solved it by not opening too many brackets.

[tex](3-x)((2-x)(2-x)-4)+4((2-x)+2)-2(4-x)[/tex]
[tex](3-x)(4-4x+x^2-4)+4(4-x)-2(4-x)[/tex]
[tex](3-x)(-4x+x^2)+(4-2)(4-x)[/tex]
[tex](3-x)(-x)(4-x)+2(4-x)[/tex]
the next step you take doesn't look right
geft said:
[tex](3-x)(2-x)(4-x)[/tex]

it should be
[tex](3-x)(-x)(4-x)+2(4-x)[/tex]
[tex]=(x^2-3x)(4-x)+2(4-x)[/tex]
[tex]=(x^2-3x+2)(4-x)[/tex]

note if your initial multiplication was correct, then all the factors should solve the equation...

though I'm not so convinced about you original polynomial now - i don't see how you get a -3x^3 term
 
  • #10
assuming your determinant is correct, then expanding this as a check
[tex]det(A - \lambda I) = (3 - \lambda)[(2 - \lambda)(2 - \lambda) - 4] + 4[(2 - \lambda) + 2] - 2[4 - \lambda] = 0[/tex]

[tex]= (3 - \lambda)(\lambda^2 -4 \lambda) + 4(4 - \lambda) - 2(4 - \lambda)[/tex]

[tex]=(-\lambda^3+7\lambda^2 -12 \lambda) + 2(4 - \lambda)[/tex]

[tex]=-\lambda^3+7 \lambda^2 -14 \lambda +8 = 0[/tex]

checking 4 is a solution
[tex]=-(4^3)+7.(4^2) -10.(4) +8 = 4.(-4^2 +7.4-10+2) = 4(-16+28-8) = 4.0 = 0[/tex]
 
  • #11
Thanks! I'm horridly careless at these meticulous calculations.
 
  • #12
geft said:
Yes, but I want to know how he got that 4.
He probably used the rational root theorem. If p/q is a root of the polynomial anxn + an-1xn-1 + ... + a1x + a0 = 0, then p must be a divisor of a0 and q must be a divisor of an.

For the polynomial equation in question, [itex]-3x^3 + 7x^2 -14x + 8 = 0[/itex], any rational root p/q must be such that p divides 8, and q divides -3. Possible choices for p are 1, -1, 2, -2, 4, -4, 8, and -8. Possible choices for q are 1, -1, 3, -3. Possible values for p/q are any of the 32 possibilities.
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 6 ·
Replies
6
Views
1K
Replies
2
Views
2K
Replies
8
Views
2K
Replies
19
Views
2K
Replies
6
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K