Linear Algebra
3.168 min read

Solution Set Structure

Putting it all together: the solution set of Ax=bA\mathbf{x} = \mathbf{b} is empty (if inconsistent), a subspace (if b=0\mathbf{b} = \mathbf{0}), or an affine set (if b0\mathbf{b} \neq \mathbf{0} and consistent). The dimension of the solution set always equals the nullity of AA.

To find the general solution: first find any particular solution xp\mathbf{x}_p (one specific x\mathbf{x} with Axp=bA\mathbf{x}_p = \mathbf{b}), then find a basis for Null(A)\text{Null}(A). The general solution is xp+c1n1++cknk\mathbf{x}_p + c_1\mathbf{n}_1 + \cdots + c_k\mathbf{n}_k where ni\mathbf{n}_i are null space basis vectors and cic_i are arbitrary.

This is exactly the same structure as the solution of a linear ODE: general = particular + homogeneous.

Formal View

Theorem 3.16 — Complete Solution Structure
If Ax=bA\mathbf{x} = \mathbf{b} is consistent with particular solution xp\mathbf{x}_p and {n1,,nk}\{\mathbf{n}_1, \ldots, \mathbf{n}_k\} is a basis for Null(A)\text{Null}(A), then every solution has the form
x=xp+c1n1++cknk\mathbf{x} = \mathbf{x}_p + c_1\mathbf{n}_1 + \cdots + c_k\mathbf{n}_k
for arbitrary c1,,ckRc_1, \ldots, c_k \in \mathbb{R}. The solution set is kk-dimensional (k=Nullity(A)k = \text{Nullity}(A)).

Why This Matters

This structure theorem is universal — it describes solution sets in every area of mathematics.

  • Underdetermined systems (more unknowns than equations) have infinitely many solutions parameterized by free variables
  • In circuit analysis, loop currents are parameterized by independent loop equations

Quiz

Question 1

A consistent system Ax=bA\mathbf{x} = \mathbf{b} with Nullity(AA) = 3 has solution set of dimension:

Common Mistakes

  • Thinking the dimension of the solution set depends on b\mathbf{b} — it only depends on Nullity(AA).