Gaussian elimination on an underdetermined 3x3 system where one
equation is a multiple of another. Elimination produces a zero
row [0 0 0 | 0], revealing a free variable. The remaining pivot
variables are expressed in terms of the free variable t.
Example
Row-reduce to expose a free variable and write a parametric solution.
highlighted = computed this step
Step 1 — Set up
Start with the augmented matrix.
1211222436128
Step 2 — Update row 2
Update row 2 using row 1: r2 <- r2 - 2*r1.
101102203608
Step 3 — Update row 3
Update row 3 using row 1: r3 <- r3 - r1.
100101201602
Step 4 — Swap rows
Swap rows 2 and 3: r2 <-> r3.
100110210620
Step 5 — Back-sub row 1
Update row 1 using row 2: r1 <- r1 - r2.
100010110420
Step 6 — Result
State the parametric solution: x1 = 4 - t, x2 = 2 - t, x3 = t.
100010110420,parametric: x1=4−t,x2=2−t,x3=t
free-variableA variable is free when its column has no pivot after RREF. It can take any value t; the pivot variables are then determined as functions of t, giving infinitely many solutions.
parametric-solutionThe solution set is expressed with the free variable as a parameter: each pivot variable equals a constant plus a multiple of t. Different values of t give different solutions, all valid.