The exact statement I'm trying to prove is:
A square matrix $A$ is called \emph{nilpotent} if $A^k = 0$ for some $k > 0$. Prove that if $A$ is nilpotent, then $I + A$ is invertible.
I know how to prove this by brute force -- supplying an inverse and performing the multiplication on the left and right -- but I'm trying to understand an alternative proof by contradiction. My biggest concern is that I left off a case. (I'm uncomfortable, generally, working with a quantity "$k-1$" because I have to worry about the quantity either being negative or zero, which can cause issues.)
Here is my proof attempt.
Let $A$ be a nilpotent, $n \times n$ matrix in $\mathbb{F}$ of degree $k$. For the sake of contradiction, suppose that $I + A$ is not invertible. Hence, $\text{ker}($I + A$) $ is non-trivial by the rank-nullity theorem, hence there exists $v \in \mathbb{F}^n - \{0\}$ such that $(I+A)v = 0$. Then $v + Av = 0$, hence $Av = -v$. Applying $A^{k-1}$ yields $$ 0 = A^k v = - A^{k-1} v. $$ As $Av = -v$, one has $A^{k-1} v = (-1)^{k-1} v$ by induction. Indeed, if $k = 1$, the statement reduces to $Iv = v = (-1)^0 v$, which is true. If $A^{m-1} v = (-1)^{m-1} v$ for some $m \geq 1$, one has $$ A^m v = A(A^{m-1} v) = A((-1)^{m-1} v) = (-1)^{m-1} Av = (-1)^{m-1} ((-1)v) = (-1)^m v, $$ which closes the induction. Hence, $0 = (-1)^k v$. As $v \neq 0$ and $(-1)^k \neq 0$, this is a contradiction.
As I said, my biggest issue is the step where I apply $A^{k-1}$ to both sides of the equation. I believe my inductive proof works and the inductive step didn't require that $m \geq 2$ (in which case I'd need to prove a second base case), but I'm not fully confident in that. If $k = 1$ at any point, $A$ is just the zero matrix. I believe that is "allowed" but a rather trivial case because then $I + A = I$, which is certainly invertible. But if $k = 1$, $A^{k-1} = I$, which I can certainly apply rather seamlessly to both sides, so it doesn't seem to me this step requires special consideration. Am I wrong?