Need to find eigenvector that corresponds to max eigenvalue

jpildave
Messages
5
Reaction score
0
To give you some background, I am trying to perform an AHP calculation using Java code. I have a 15x15 matrix and I need to find its eigenvector. I want the eigenvector that corresponds to the greatest eigenvalue.

Let's say I already have some method that gives me all the eigenvectors and all the eigenvalues. Let's call the eigenvector matrix V (15x15) and the eigenvalues matrix D (15x15 block diagonal).

I'm confused because some of my eigenvalues are complex and so I don't exactly know how to find the maximum one. I believe I have to do something like a^2 + b^2, but this is where I need help. Do I do this per column in D? (I need the exact steps in calculating and then also find the maximum one.)

Thank you.
 
Physics news on Phys.org
HallsofIvy,

Thanks for your response. I wanted to follow-up on something you mentioned... You said that you think I should be looking for the largest real eigenvalue. I didn't know that I should only be limiting the search to the largest _real_ eigenvalue. I think this will simplify things for me, but can you explain why I only need to be concerned with the _real_ eigenvalues? (Sorry, if this is a stupid question.)

Since I already have the eigenvalues and and the eigenvectors, I do not need to code the QR algorithm myself, however, I have an additional question.

In the 15x15 matrix that contains the eigenvalues, does the following logic make sense to you to find the largest real eigenvalue...?

Look at each column in the matrix. If there are 2 non-zero values in the column, then this is an eigenvalue that is complex. Therefore, don't worry about it and go to the next one. But, if you come find a column that only has one non-zero value, this represents an eigenvalue that is real. Therefore, take note of this value and proceed.

Sound good?
 
##\textbf{Exercise 10}:## I came across the following solution online: Questions: 1. When the author states in "that ring (not sure if he is referring to ##R## or ##R/\mathfrak{p}##, but I am guessing the later) ##x_n x_{n+1}=0## for all odd $n$ and ##x_{n+1}## is invertible, so that ##x_n=0##" 2. How does ##x_nx_{n+1}=0## implies that ##x_{n+1}## is invertible and ##x_n=0##. I mean if the quotient ring ##R/\mathfrak{p}## is an integral domain, and ##x_{n+1}## is invertible then...
The following are taken from the two sources, 1) from this online page and the book An Introduction to Module Theory by: Ibrahim Assem, Flavio U. Coelho. In the Abelian Categories chapter in the module theory text on page 157, right after presenting IV.2.21 Definition, the authors states "Image and coimage may or may not exist, but if they do, then they are unique up to isomorphism (because so are kernels and cokernels). Also in the reference url page above, the authors present two...
When decomposing a representation ##\rho## of a finite group ##G## into irreducible representations, we can find the number of times the representation contains a particular irrep ##\rho_0## through the character inner product $$ \langle \chi, \chi_0\rangle = \frac{1}{|G|} \sum_{g\in G} \chi(g) \chi_0(g)^*$$ where ##\chi## and ##\chi_0## are the characters of ##\rho## and ##\rho_0##, respectively. Since all group elements in the same conjugacy class have the same characters, this may be...
Back
Top