4.5.8 · D5Linear Algebra (Full)
Question bank — Systems of linear equations — matrix form Ax = b
Notation reminder used throughout (all defined in the parent):
- is the coefficient matrix — rows (equations), columns (unknowns).
- is the vector of unknowns, the right-hand side.
- is the augmented matrix: with the column glued on the right.
- counts independent rows/columns; is the span of the columns; the null space is all with .
True or false — justify
TF1. "If is with (more equations than unknowns), the system has no solution."
False — solvability depends on rank, not row count; if the extra rows are dependent, can still lie in and a solution exists. See Rank of a matrix.
TF2. " can be inconsistent (have no solution)."
False — always satisfies , so a homogeneous system is never inconsistent; the only question is whether nonzero solutions also exist.
TF3. "If then has no solution."
False — only kills the unique solution; the system may still have infinitely many solutions (if ) or none (if it doesn't). See Determinant.
TF4. "If has two distinct solutions, it has infinitely many."
True — if then , so a nonzero null-space vector exists, and solves it for every real .
TF5. "For a square , has a unique solution for every iff is invertible."
True — invertibility means the columns span all of and are independent, so every is hit exactly once. See Inverse of a matrix.
TF6. "Adding a redundant equation (a copy of an existing one) can change the solution set."
False — a duplicate row leaves both and unchanged, so the solution set is identical.
TF7. "If the columns of are linearly independent, the solution to (when it exists) is unique."
True — independent columns mean the null space is only , so no two inputs map to the same . See Linear independence.
TF8. " solvable means can be written as a linear combination of the rows of ."
False — it means is a combination of the columns of (the column view); rows live in a different space entirely.
TF9. "If , the solution is automatically unique."
False — that only guarantees existence; uniqueness additionally needs that common rank to equal , the number of unknowns.
Spot the error
SE1. ", by dividing both sides by ."
There is no matrix division; the legal move is left-multiplying by (only when is square and invertible), giving ====.
SE2. ", so ."
Order is wrong — you must left-multiply: gives . Matrix products don't commute, so isn't even well-shaped here.
SE3. "The system has 3 equations and 3 unknowns, so it has a unique solution."
Square shape alone guarantees nothing; you need (equivalently full rank). A singular system can have infinitely many or no solutions.
SE4. " is , and , so there's no unique solution."
The determinant is undefined for non-square matrices; use rank instead. Here but rank , so there can never be a unique solution regardless.
SE5. "Two solutions and exist, so the general solution is ."
Wrong structure — the general solution is where ranges over the null space; adding two particular solutions gives , not .
SE6. "rank, rank, , so there are free parameters — namely rank many."
Free parameters are here by coincidence; the rule is ====, the number of columns minus rank, not the rank itself. (E.g. gives free parameter, not .)
SE7. "Since is consistent and has only the trivial solution, we conclude nothing about uniqueness."
Actually this does force uniqueness: trivial null space + existence ⇒ exactly one solution, because any two solutions would differ by a null-space vector.
Why questions
WHY1. Why is matrix multiplication defined as "row- dotted with " rather than some other rule?
Because that exact definition makes reproduce equation verbatim, so is the original system compressed. See Matrix multiplication.
WHY2. Why does rank — and not the number of equations — decide existence and uniqueness?
Rank counts the number of independent constraints/directions; redundant rows add no information, so only independent constraints can pin down or contradict the unknowns.
WHY3. Why does raising the augmented rank above mean "no solution"?
It means points in a direction the columns can't reach (a new independent direction), so no weighting of the columns can ever build — .
WHY4. Why is the general solution and not just ?
Because for any null-space vector , so every particular solution is shifted by the whole null space. See Column space and null space.
WHY5. Why does only work for square invertible ?
exists only when is square with independent columns; otherwise either loses information (can't be undone) or isn't a one-to-one map, so no inverse exists.
WHY6. Why can we say is a "linear combination of columns" instead of computing dot products?
Grouping the terms by column gives times column , so — the weights are literally the unknowns.
WHY7. Why does having a nonzero null space destroy uniqueness but not existence?
A nonzero can be added to any solution to make another, killing uniqueness; but it says nothing about whether is reachable in the first place, which is a separate (existence) question.
Edge cases
EC1. What does describe when is the zero matrix and ?
Every vector solves it (the constraint is vacuous), so the solution set is all of — the maximally-infinite case.
EC2. What if is the zero matrix but ?
No solution — for every , so it can never equal a nonzero ; here .
EC3. In the column view, what does (all weights zero) always produce?
The zero vector, since — which is why is always consistent.
EC4. A single equation (so ): how many free parameters and why?
free parameters — one plane in 3D is one constraint (rank 1), leaving two directions free to slide within the plane.
EC5. If but two rows of are identical, can the system be square and have infinitely many solutions?
Yes — identical rows drop the rank below (so ), and if is consistent with the dependence, you get infinitely many solutions despite the square shape.
EC6. What happens to the solution set of if you scale one whole equation by a nonzero constant ?
Nothing — multiplying a row of by leaves both ranks and the solution set unchanged; it's a reversible row operation. See Gaussian elimination.
EC7. Can an homogeneous system have exactly two solutions (and no more)?
No — solutions of form a subspace, so it's either just (one) or contains a nonzero vector and hence infinitely many (all its scalar multiples).
Connections
- Systems of linear equations — matrix form Ax = b — the parent this bank drills.
- Rank of a matrix — the single tool that resolves most traps here.
- Column space and null space — existence lives in one, uniqueness in the other.
- Determinant — square-only; the source of the " no solution" trap.
- Inverse of a matrix — legitimizes and no other rearrangement.
- Linear independence — independent columns trivial null space uniqueness.
- Gaussian elimination — the row operations that never change the solution set.
- Matrix multiplication — why is the system, not a new rule.