Let $A$ be a square matrix. If $\lambda=0$ is an eigenvalue of $A$, what is the maximum value of $\text{rank}(A)$?
This one was really tricky for me, but I'll show what I did:
So first I tried to find a matrix that actually has an eigenvalue of $0$, and the first one I found was the zero matrix:
$z=\begin{pmatrix}0 & 0\\0 & 0\end{pmatrix}$
To find the eigenvalues of this matrix, I used the formula below:
$\det(z - \lambda I)$
$\det\left(\begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix} - \begin{pmatrix} \lambda & 0 \\ 0 & \lambda \end{pmatrix}\right)$ = $\det\begin{pmatrix} -\lambda & 0 \\ 0 & -\lambda \end{pmatrix}$
I took the determinant and got $\lambda^2$.
To actually find the eigenvalues, I set $\lambda^2=0$, which just yields $\lambda=0$.
I think this is where I did something wrong.
I assumed that the zero matrix was the only matrix that has an eigenvalue of $0$ and because of this I also assumed that the row reduced echelon form of the zero matrix is itself, therefore I concluded that the maximum rank of the zero matrix is $0$.
Can someone shed some light on this problem? Did I even approach this problem correctly?