0

Assume one knows the eigenvalues $(\lambda_i)$ of a real matrix $M$ of size $n \times n$. Let $b$ be a vector in $\mathbb{R}^n$ and construct the following matrix $J$ by: $$J_{ij} = M_{ij}b_j$$ Can we deduce the eigenvalues of $J$ from the eigenvalues $\lambda_i$ and the vector $b$ ?

mellow
  • 796

1 Answers1

3

No. For example, suppose $n=2$ and we know that $M$ has eigenvalues $0$ and $2$ and that $b=(1,0)$. Then we might have $M=\begin{pmatrix} 2 & 0 \\ 0 & 0 \end{pmatrix}$, in which case $J=\begin{pmatrix} 2 & 0 \\ 0 & 0 \end{pmatrix}$ has eigenvalues $0$ and $2$. On the other hand, we might have $M=\begin{pmatrix} 0 & 0 \\ 0 & 2 \end{pmatrix}$, in which case $J=\begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix}$ has $0$ as its only eigenvalue.

Chris Eagle
  • 34,035