Why is it that, if a matrix has a linear dependent row, e.g.: $$ A=\begin {pmatrix} 1 \ 2 \\ 2 \ 4 \end {pmatrix}, $$ at least one eigenvalue is zero?
2025-01-13 02:18:06.1736734686
Eigenvalues of matrix with linear dependent rows
9.3k Views Asked by Daiz https://math.techqa.club/user/daiz/detail At
2
Ok, so I found an answer with the help of Bye_World's comment and want to provide it in case anybody else is also wondering: In order to find eigenvalues of a matrix, we need its characteristic polynomial, which is calculated as follows: $$ \det (\lambda I-A)=\det \begin {pmatrix} \lambda -a_{11} & -a_{12} \\ -a_{21} & \lambda -a_{22} \end{pmatrix}=\lambda ^2 - (a_{11}+a_{22}) \lambda + a_{11}a_{22}-a_{12}a_{21}=0, $$ where $$ \det (A)= a_{11}a_{22}-a_{12}a_{21}. $$ So we can see that if $det (A)=0$, which is the case if there is a linear dependent row, then $\lambda=0$ is a solution.