Can anyone prove/disprove the following statement?
Given a square matrix of size $n\ge2$, if all of its $(n-1)$-rowed minors are zero, then $\operatorname{rank}(A)\leq n-2$.
I'm having trouble connecting the information on the minors to what I have to prove.
Thank you in advance.
Original Post: Show that $\text{rank}(A) \leq 2$.
This doesn't appear to be true. Consider the following matrix: $$A = \begin{bmatrix} 0 & 0 & 0 & 0&0 \\ 0 & 1 & 0 &0 &0 \\ 0 & 0 & 1 &0 &0 \\ 0 & 0 & 0 &1 &0 \\ 0 & 0 & 0 & 0 &0 \end{bmatrix}$$ $A$ clearly has rank $3$. To see why all of $A$'s minors have determinant zero, just note that to create a minor, you eliminate a column and a row. But it's not possible to remove both row $1$ and row $5$ (which are both zero rows), and thus any minor must have a row of zeroes (which implies its determinant is nonzero).
Updated Version: Show that $\text{rank}(A) \leq n - 2$.
Proof: Proceed by contradiction and suppose the rank is $n - 1$ (it clearly can't be $n$, because Laplace expanding along any row or column would yield a zero determinant). If the rank is $n-1$, then it must mean that there exists some column we can remove that doesn't change the rank (because there must exist $n-1$ linearly independent columns). Assume this is the $k$th column. Upon removing this column, we have a $n \times (n-1)$ matrix, supposedly with rank $n - 1$. As this matrix has $n$ rows, it follows that we must be able to remove exactly one row without changing the rank. Let this be the $j$th row. Then we are left with a rank $n-1$ matrix that has dimensions $(n-1) \times (n-1)$, and thus it has nonzero determinant. But this matrix is exactly the $(k,j)$th minor of $A$, a contradiction.