Every span question — whether a given vector is reachable, whether a set covers Rn, which vectors are redundant, whether a set is a basis — reduces to building a matrix from the given vectors, row-reducing it, and inspecting the result. What changes between questions is which part of the reduced form to look at: the augmented column for membership, the rows for spanning, the columns for redundancy, both for a basis. The table below collects these questions side by side, showing what to set up, what to look for in the reduced form, and what a positive answer means in each case. Each of the four questions below is answered by the same procedure: arrange the vectors as the columns of a matrix, reduce, and read the result. What differs is only which feature of the reduced form carries the answer — a contradiction row, a pivotless row, a pivotless column, or the absence of both. Grouping the questions by what they interrogate makes that overlap visible: one asks about a single vector against the set, three ask about the set itself.
Vector spaces · diagnostics
Four questions, one reduction
Each question sets up a matrix, reduces it, and reads a different part of the result. The setup barely changes between them — what changes is where to look.
4questions
About a single vector1
1[v1⋯vk∣b] Augment the spanning vectors with b and reduce. A row of the form [0⋯0∣d] with d=0 is a contradiction and settles it as no; anything else means b is reachable, and the reduced form also hands you the coefficients that reach it. About the whole set3
2rank(A)=n Vectors as columns of an n×k matrix. Every row needs a pivot — a pivotless row is a direction of Rn nothing in the set reaches. Note this is a condition on rows, while redundancy below is a condition on columns; confusing the two is the usual error. 3a pivot in every column ⇒ none
non-pivot columns of rref(A) A column without a pivot corresponds to a vector already in the span of the earlier ones, so it can be dropped without changing the span. The reduced form names which — removing them leaves a minimal spanning set. 4a pivot in every row and column
det(A)=0, A square Both conditions at once: spanning with no redundancy. For n vectors in Rn the matrix is square, so the determinant test settles it in one step — which is the invertibility equivalence restated for spanning sets. Two of these deserve to be held apart deliberately. Spanning is a condition on rows — a row without a pivot names a direction of Rn that nothing in the set reaches. Redundancy is a condition on columns — a column without a pivot names a vector the others already reach. Both are read from the same echelon form and they answer opposite questions, which is why they are the pair most often confused. A set passing both is a basis, and for n vectors in Rn the square determinant test collapses the two checks into one. Where the count is wrong no determinant exists and the conditions must be checked separately — fewer than n vectors cannot span, more than n cannot be independent, and the reduction says which failure has occurred.