2

Possible Duplicate:
eigenvalues and eigenvectors of $vv^T$

I'm reading an article concerning the matrix

$$s s^T + bI,$$

where $s$ is a vector of length $N$, $b$ is a real scalar and $I$ is the unit matrix. $s^T$ is the transpose of $s$.

The article states that the first eigenvalue is $E_s+b$, and the rest are $b$. $E_s$ denotes the signal energy of $s$, i.e.

$$E_s = s^2(1)+s^2(2)+\cdots+s^2(n)$$

How can these eigenvalues be found?

Mark
  • 23
  • 2

2 Answers2

1

Can you see that each column of $ss^T$ is a multiple of the 1st column? Can you use this to find $n-1$ eigenvectors, each with eigenvalue zero? Do you know about the trace of a matrix, and its relation to the eigenvalues? Can you use that to find the last eigenvalue of $ss^T$? Do you understand the effect on the eigenvalues of adding $b$ to each diagonal entry of a matrix?

Gerry Myerson
  • 179,216
  • What do you mean by being a multiple of the first column? Each column of $ss^T$ is a multiple of $s$. For e.g. $s=(a,b)$, the columns are $(a^2, ab)$ and $(ab, b^2)$, where the latter is not necessarily an integer multiple of the former. – Mark Feb 19 '12 at 12:16
  • The sum of the eigenvalues should be $Tr(ss^T+bI)=E_s+nb$. I realise that $ss^T$ only has one non-zero eigenvalue -- please disregard the above comment. How does adding the diagonal matrix affect the eigenvalues except for changing their sum? – Mark Feb 19 '12 at 12:20
  • I wrote "multiple", not "integer multiple". This is linear algebra, not number theory. 2. For the result of adding $bI$, see Hans Lundmark's second comment.
  • – Gerry Myerson Feb 19 '12 at 22:57