Quick question I was hoping I could get some insight on. If I have a block matrix of the following form
$$A = \begin{pmatrix} I & A_{12} \\ 0 & A_{22} \end{pmatrix}$$
Where $A_{12}, A_{22}$ are arbitrary block matrices that need not be square (in fact in my case they are not square). Is it correct to say that
$$\text{rank} A = \text{rank}I + \text{rank}A_{22}$$
Because the identity matrix ensures that $A$ has the rank of $I$ and then the rank of $A$ should be determined by the rank of $A_{22}$, no?
Yes, your statement is correct. For a slightly more formal justification, note that $$ \pmatrix{I&A_{12}\\0&A_{22}} \pmatrix{I & -A_{12}\\0&I} = \pmatrix{I&0\\0&A_{22}} $$ has total rank $\operatorname{rank}(I) + \operatorname{rank}(A_{22})$.