Linear Algebra
3.138 min read

Linear Systems as Matrix Equations

We can now fully connect the world of linear systems (Chapter 1) to the world of matrices. The system Ax=bA\mathbf{x} = \mathbf{b} asks: is b\mathbf{b} in the column space of AA? If yes, any x\mathbf{x} such that Ax=bA\mathbf{x} = \mathbf{b} is a solution.

Solving a linear system = finding the pre-image of b\mathbf{b} under the linear map AA. The solution set is xp+Null(A)\mathbf{x}_p + \text{Null}(A) where xp\mathbf{x}_p is any particular solution.

This unifies everything from Chapter 1: the trichotomy (no/unique/infinite solutions) corresponds to bCol(A)\mathbf{b} \notin \text{Col}(A) / bCol(A)\mathbf{b} \in \text{Col}(A) and Nullity(A)=0\text{Nullity}(A) = 0 / bCol(A)\mathbf{b} \in \text{Col}(A) and Nullity(A)>0\text{Nullity}(A) > 0.

Formal View

Theorem 3.13 — Solvability Criterion
The system Ax=bA\mathbf{x} = \mathbf{b} is solvable if and only if bCol(A)\mathbf{b} \in \text{Col}(A). When solvable, the complete solution set is {xp+n:nNull(A)}\{\mathbf{x}_p + \mathbf{n} : \mathbf{n} \in \text{Null}(A)\} for any particular solution xp\mathbf{x}_p.

Why This Matters

Expressing solvability in terms of column space membership is the geometric key to the theory.

  • Before solving, check solvability: is b\mathbf{b} in the column span?
  • The particular + homogeneous solution structure is universal — it appears in differential equations too

Quiz

Question 1

If Ax=bA\mathbf{x} = \mathbf{b} has two solutions x1\mathbf{x}_1 and x2\mathbf{x}_2, then x1x2Null(A)\mathbf{x}_1 - \mathbf{x}_2 \in \text{Null}(A).

Common Mistakes

  • Thinking "any particular solution" means a unique choice — there are infinitely many when Nullity > 0.