Are eigenvalues of a row-normalized symmetric matrix always real?

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 3K views
tom08
Messages
19
Reaction score
0
Help! Symmetric matrix

I know that all the eigenvalues of a real symmetric matrix are real numbers.
Now can anyone help out how to prove that "all the eigenvalues of a row-normalized real symmetric matrix are real numbers"? Thank you~~~
 
Physics news on Phys.org


?? A "row normalized" symmetric matrix is still a symmetric matrix. Just use the same proof as for any symmetric matrix.
 


hi everyone please tell me an algorithm for finding if a matrix is symmetric or not
 


What's wrong with the obvious one:

Answer= "symmetric"
For i= 1 to n-1
{
For j= i+1 to n
if [itex]a_{ij}\ne a_{ji}[/itex]
{
Answer= "not symmetric"
exit loops
}
}
report Answer.