- #1
DeathbyGreen
- 84
- 16
Hi,
I'm trying to calculate the eigenvectors of a 4x4 matrix, but I don't want the actual eigenvalues included in the solution, I simply want them listed as a variable. For example, I have the matrix:
[itex]
H_F =
\left[
\begin{array}{cccc}
\hbar\Omega&\hbar v_fk_- &0&0\\
\hbar v_fk_+&\hbar\Omega&\frac{v_fe}{c}A_0 &0\\
0&\frac{v_fe}{c}A_0 &0&\hbar v_fk_- \\
0&0&\hbar v_fk_+ &0\\
\end{array}
\right]
[/itex]
My attempt at a solution was just plugging in [itex]H_F-\epsilon\bf{I}[/itex] with [itex]\bf{I}[/itex] the identity matrix, and then using RowReduce. However, this only gives me the identity matrix, which is not the answer I'm looking for. If I just use [itex]H_F[/itex] and use Eigenvectors[[itex]H_F[/itex]] then I get a huge, essentially useless mess of variables. I would like the output to list the eigenvector as a function of a variable which represents the eigenvalue. Is there any way to do this? A code I was using is (with some variable substitutions for easier entry):
I'm trying to calculate the eigenvectors of a 4x4 matrix, but I don't want the actual eigenvalues included in the solution, I simply want them listed as a variable. For example, I have the matrix:
[itex]
H_F =
\left[
\begin{array}{cccc}
\hbar\Omega&\hbar v_fk_- &0&0\\
\hbar v_fk_+&\hbar\Omega&\frac{v_fe}{c}A_0 &0\\
0&\frac{v_fe}{c}A_0 &0&\hbar v_fk_- \\
0&0&\hbar v_fk_+ &0\\
\end{array}
\right]
[/itex]
My attempt at a solution was just plugging in [itex]H_F-\epsilon\bf{I}[/itex] with [itex]\bf{I}[/itex] the identity matrix, and then using RowReduce. However, this only gives me the identity matrix, which is not the answer I'm looking for. If I just use [itex]H_F[/itex] and use Eigenvectors[[itex]H_F[/itex]] then I get a huge, essentially useless mess of variables. I would like the output to list the eigenvector as a function of a variable which represents the eigenvalue. Is there any way to do this? A code I was using is (with some variable substitutions for easier entry):
Code:
RowReduce((h*w-l,h*v*x,0,0),(h*v*y,hw-l,m,0),(0,m,-l,h*v*x),(0,0,h*v*y,-l))
Last edited: