3.148 min read
Solvability: When Does Ax = b Have a Solution?
The system has a solution if and only if lies in the column space of . Operationally, we check this by row-reducing the augmented matrix and looking for contradictory rows.
A contradictory row with signals that is NOT in — the system is inconsistent.
If no contradiction arises, and the system is consistent. The solution is found by back substitution, with free variables parametrizing the null space.
Formal View
Theorem 3.14
The augmented system row-reduces to a system with no contradictory row is consistent.
Why This Matters
The solvability check is the first step in any practical linear algebra computation.
- Before running any solver, verify the system is consistent
- In optimization, infeasibility detection saves computational effort
Quiz
Question 1
During row reduction of you get the row . The system is:
Common Mistakes
- Stopping row reduction before checking all rows for contradictions.
- Assuming a system with many equations is more likely to be solvable — more constraints can only reduce solvability.