What the map destroys, and where it can land
A matrix A is a machine: vectors in, vectors out. Before computing anything, there are exactly two structural questions worth asking about such a machine. What does it destroy? And what can it produce? Linear algebra gives each answer a subspace.
Take a 2×2 matrix of rank 1. Geometrically it flattens the entire plane onto a single line (the image), and one entire line of inputs (the null space) lands on the origin. Every other point of the plane shares its output with a whole line of accomplices: x and x + n give the same Ax whenever n is in the null space.
A rank-1 map: one input direction (terracotta) is crushed to the origin; all outputs land on one line (green). Whole lines of inputs become single points.
Every question about solving a linear system reduces to these two subspaces. Solvability is a question about the image; uniqueness is a question about the null space. They are independent questions, which is why all four combinations occur.
| b ∈ image? | Null space | Solutions of Ax = b |
|---|---|---|
| yes | trivial {0} | exactly one |
| yes | nontrivial | infinitely many: x* + (anything in null space) |
| no | either | none — b is out of reach (least squares finds the nearest reachable point) |
The structure of the infinite case deserves a sentence: solutions form a translated copy of the null space. Find one particular solution x*, and every other solution is x* plus a null vector — the ambiguity in the answer is exactly the blind spot of the map. The unreachable case is where least squares lives: project b onto the image and solve for that instead.
The two subspaces are not independent in size. For A mapping ℝⁿ → ℝᵐ:
Read it as a conservation law: every one of the n input dimensions is either transmitted to the output or annihilated — none go missing, none are created. A map cannot crush a direction and keep it. This single identity ties the note together: a wide matrix (n > m) must have a null space, because at most m dimensions can survive; a tall matrix can be injective but can never fill its codomain. (Whether the surviving dimensions are as many as possible is the subject of rank; whether the inputs being crushed were "redundant" columns is linear dependence in disguise.)
The named connection: the null space is where unidentifiability lives.