True of False? : If $A$ is a square matrix and $A^2$ has a column of zeros, then A must have a column of zeros.
This was in one of my exercise questions and I'm wondering how to prove it. If it's right, how do you prove it's right? Or if it's wrong, can you only look for counterexamples for T/F statements like this? It's not really easy to come up with counterexamples even if this is wrong, and I'm wondering if there is a better way to solve this rather than resorting to that.
It is false. If, for instance,$$A=\begin{bmatrix}1&-1\\1&-1\end{bmatrix},$$then $A^2$ is the null matrix.
A more systematic approach is this: you can easily check that, if $M=\left[\begin{smallmatrix}0&1\\0&0\end{smallmatrix}\right]$, then $M^2=\left[\begin{smallmatrix}0&0\\0&0\end{smallmatrix}\right]$. Of course, $M$ is not a counterexample, since it has a column of zeros. However, since $M^2=\left[\begin{smallmatrix}0&0\\0&0\end{smallmatrix}\right]$, the square of any matrix $A$ similar to $M$ will be the null matrix too. But, given any four numbers $a$, $b$, $c$, and $d$ such that $ad-bc\ne0$, you have$$\begin{bmatrix}a&b\\c&d\end{bmatrix}.M.\begin{bmatrix}a&b\\c&d\end{bmatrix}^{-1}=\frac1{ad-bc}\begin{bmatrix}-ac&a^2\\-c^2&ac\end{bmatrix}.\tag1$$So, pick any four numbers $a$, $b$, $c$, and $d$ such that $ad-bc\ne0$ and that both $a$ and $c$ are not $0$, and the RHS of $(1)$ will be a counterexample. For instance, if $a=c=d=1$ and $b=2$, then you will simply get $A=\left[\begin{smallmatrix}1&-1\\1&-1\end{smallmatrix}\right]$.