55. Linear System Special Cases

When you reduce an augmented matrix [𝐴|𝑏] to REF, rows of all zeros (or zero coefficients with non-zero RHS) signal one of three structural situations.

55.1. 1. Dependent equations

One equation is a linear combination of others — they carry the same information.

2𝑥+4𝑦=8𝑥+2𝑦=4

The second equation is half the first — same line. After row reduction:

[124000]

The zero row means one equation was redundant. The system has infinitely many solutions (a whole line in 2).

55.2. 2. Underdetermined systems

More variables than independent equations — fewer constraints than unknowns.

𝑥+𝑦+𝑧=22𝑥+3𝑦+𝑧=5

Two equations in three unknowns. After row reduction:

[11120111]

Both equations are independent, but 𝑧 is a free variable. Infinitely many solutions (a line in 3).

55.3. 3. Inconsistent systems

A zero coefficient row with a non-zero RHS — translates to 0=𝑐 for 𝑐0, which is impossible.

𝑥+𝑦=32𝑥+2𝑦=7

(Same left-hand side scaled by 2, but right-hand side doesn’t scale to match.)

[113001]

The second row reads 0=1. No solution.

55.4. See also