I'm trying to formally prove that a row vector is not in the row space of some given matrix. It is clear by visual inspection that the row cannot be written as a linear combination as the rows of the matrix. But how do I formally prove it? I cannot, of course, go through all possible linear combinations, and I believe a visual argument alone is not satisfactory.
Is there any theorem that would be contradicted by assuming some vector belongs to a row/column space when it doesn't?
I am asking this question for the general case, however the matrix and vector I'm working with, for the purposes of exposition are:
$\underline{\lambda}'= \left( \begin{array}{cc} 0 & 1 & 0 & \dots & 0\\ \end{array} \right)_{1\times(k+1)} \quad \quad X = \left( \begin{array}{cc} \underline{1}_{n1} & \underline{1}_{n1} & \underline{0}_{n1} & \dots & \underline{0}_{n1}\\ \underline{1}_{n2} & \underline{0}_{n2} & \underline{1}_{n2} & \dots & \underline{0}_{n2}\\ \vdots & \vdots & \vdots & \dots & \vdots\\ \underline{1}_{nk} & \underline{0}_{nk} & \underline{0}_{nk} & \dots & \underline{1}_{nk}\\ \\ \end{array} \right)_{N\times(k+1)}$
In my notation, an underline means a vector and $N=\sum_{i}n_{i}$
Generally speaking, if you want to check whether a vector $b$ is in the column space of a matrix $A$, you are looking for a solution $x$ to the system $Ax=b$. This can be done with a computer (or, if you need to do this by hand, using Gaussian elimination).
(Since your original question is about the rowspace of a matrix, just transpose the matrix before reading my above paragraph.)