Determinant of this special matrix

ian2012
Messages
77
Reaction score
0
Hope someone can help me out here.. I've found the eigenvalues (lamda) of this matrix, but through a very very long way, does anyone know of a quicker way (there must be a quicker way). The matrix is 3x3:

H = ( E, a, a; a, E, a; a, a, E ).

I can reduce the determinant to the following, but still troublesome:

det(H) = | E - lamda, a, a; a, E - lamda, a; a, a, E - lamda |

det(H) = | E - lamda - a, a - E + lamda, 0; 0, E - lamda - a, a - E + lamda; a, a, E - lamda |
 
Physics news on Phys.org
For what its worth, Mathematica gives E-a and 2a+E as a double and single eigenvalue of H, respectively. But using Mathematica is probably not what you meant by "a quicker way".

Does following through on the calculation you indicated in your post give you any problems?
 
Yeah, i know the solutions , thanks... Well i end up with (E - lamda - a)(E - lamda) + a(E - lamda - a) - a = 0 as the equation of the determinant. I am a bit rusty on my high school algebra, is there a way to factorise that? (You could multiply it all out and spend a lifetime dividing it by a trial solution)
 
Last edited:
Okay, i may have canceled abit too early, the factorization I am looking for is of:
(E - lamda - a)^2(E- lamda + a) = a(E - lamda - a)
 
The eigenvalue problem is equivalent to:
<br /> E \, x_{n} + a \, \sum_{m \ne n}{x_{m}} = \lambda \, x_{n}<br />

If you introduce:
<br /> S = \sum_{m}{x_{m}}<br />

you can rewrite the equations as:
<br /> (E - a - \lambda) \, x_{n} + a \, S = 0<br />

<br /> x_{n} = \frac{a \, S}{\lambda + a - E}<br />
If S = 0, then, in order that we have at least one non-zero x_{n}, we must have:

<br /> \lambda + a - E = 0<br />

or

<br /> \lambda = E - a<br />

If, on the other hand S \ne 0, we have unique solutions for x_{n}. Substituting these back into the definition for S and canceling, we get:

<br /> S = \sum_{n}{\frac{a \, S}{\lambda + a - E}} = \frac{N \, a\, S}{\lambda + a - E}<br />

<br /> 1 = \frac{a \, N}{\lambda + a - E}<br />

<br /> \lambda = E + (N - 1) \, a<br />

BTW, this problem is similar to the Cooper pairing problem in superconductivity.
 
Following are the eigenvectors by inspection: [1. 1,1]', [1 -1 0]' and [0 1 -1]'. These are linearly independent with the corresponding eigenvalues E+2a, E-a and E-a.
 
@Dickfore:
That's a nice way of approaching the problem.
 
Back
Top