8.2: Systems of Linear Equations- Augmented Matrices
( \newcommand{\kernel}{\mathrm{null}\,}\)
In Section
\[ \left[ \begin{array}{rrr} 3 & 0 & -1 \
2 & -5 & 10 \end{array} \right]\]
is $2 \times 3$ because it has $2$ rows and $3$ columns. The individual numbers in a matrix are called its \index{matrix ! entry} \index{entry ! in a matrix} \textbf{entries} and are usually labeled with double subscripts: the first tells which row the element is in and the second tells which column it is in. The rows are numbered from top to bottom and the columns are numbered from left to right. Matrices themselves are usually denoted by uppercase letters ($A$, $B$, $C$, etc.) while their entries are usually denoted by the corresponding letter. So, for instance, if we have
\[ A = \left[ \begin{array}{rrr} 3 & 0 & -1 \
2 & -5 & 10 \end{array} \right]\]
then $a_{\mbox{\tiny$11$}} = 3$, $a_{\mbox{\tiny$12$}} = 0$, $a_{\mbox{\tiny$13$}} = -1$, $a_{\mbox{\tiny$21$}} = 2$, $a_{\mbox{\tiny$22$}} = -5$, and $a_{\mbox{\tiny$23$}} = 10$. We shall explore matrices as mathematical objects with their own algebra in Section
\[\left\{ \begin{array}{lrcr} (E1) & 2x+3y-z & = & 1 \
(E2) & 10x-z & = & 2 \
(E3) & 4x-9y+2z & = & 5 \ \end{array} \right.\]
We encode this system into a matrix by assigning each equation to a corresponding row. Within that row, each variable and the constant gets its own column, and to separate the variables on the left hand side of the equation from the constants on the right hand side, we use a vertical bar, $|$. Note that in $E2$, since $y$ is not present, we record its coefficient as $0$. The matrix associated with this system is
This matrix is called an \index{matrix ! augmented} \index{augmented matrix} \textbf{augmented matrix} because the column containing the constants is appended to the matrix containing the coefficients.\footnote{We shall study the coefficient and constant matrices separately in Section
\smallskip
\colorbox{ResultColor}{\bbm
\begin{thm} \label{rowops} \textbf{Row Operations:} Given an augmented matrix for a system of linear equations, the following row operations produce an augmented matrix which corresponds to an equivalent system of linear equations. \index{matrix ! row operations} \index{row operations for a matrix}
\begin{itemize}
\item Interchange any two rows.
\item Replace a row with a nonzero multiple of itself.\footnote{That is, the row obtained by multiplying each entry in the row by the same nonzero number.}
\item Replace a row with itself plus a nonzero multiple of another row.\footnote{Where we add entries in corresponding columns.}
\end{itemize}
\end{thm}
\ebm}
\smallskip
As a demonstration of the moves in Theorem
\[\begin{array}{ccc}
\left\{ \begin{array}{lrcr}
(E1) & 3x-y+z & = & 3 \
(E2) & 2x-4y+3z & = & 16 \
(E3) & x-y+z & = & 5 \
\end{array} \right.
&
\xrightarrow{\text{Switch $E1$ and $E3$}}
&
\left\{ \begin{array}{lrcr}
(E1) & x-y+z & = & 5 \
(E2) & 2x-4y+3z & = & 16 \
(E3) & 3x-y+z & = & 3 \
\end{array} \right.
\end{array}\]
\[\begin{array}{ccc}
\left[ \begin{array}{rrr|r}
3 & -1 & \hphantom{-}1 & 3 \
2 & -4 & 3 & 16 \
1 & -1 & 1 & 5 \
\end{array} \right]
&
\xrightarrow{\text{Switch $R1$ and $R3$}}
&
\left[ \begin{array}{rrr|r}
1 & -1 & \hphantom{-}1 & 5 \
2 & -4 & 3 & 16 \
3 & -1 & 1 & 3 \
\end{array} \right]
\end{array}\]
Next, we have a demonstration of replacing a row with a nonzero multiple of itself using the first step of part 3 in Example
\[\begin{array}{ccc}
\left\{
\begin{array}{lrcr}
(E1) & 3x_{\mbox{\tiny$1$}} +x_{\mbox{\tiny$2$}} + x_{\mbox{\tiny$4$}} & = & 6 \
(E2) & 2x_{\mbox{\tiny$1$}} + x_{\mbox{\tiny$2$}} -x_{\mbox{\tiny$3$}} & = & 4 \
(E3) & x_{\mbox{\tiny$2$}} -3x_{\mbox{\tiny$3$}} -2x_{\mbox{\tiny$4$}} & = & 0 \
\end{array}
\right.
&
\xrightarrow{\text{Replace $E1$ with $\frac{1}{3}E1$}}
&
\left\{
\begin{array}{lrcr}
(E1) & x_{\mbox{\tiny$1$}} + \frac{1}{3}x_{\mbox{\tiny$2$}} + \frac{1}{3}x_{\mbox{\tiny$4$}} & = & 2 \
(E2) & 2x_{\mbox{\tiny$1$}} + x_{\mbox{\tiny$2$}} -x_{\mbox{\tiny$3$}} & = & 4 \
(E3) & x_{\mbox{\tiny$2$}} -3x_{\mbox{\tiny$3$}} -2x_{\mbox{\tiny$4$}} & = & 0 \
\end{array}
\right.
\end{array}\]
\[\begin{array}{ccc}
\left[ \begin{array}{rrrr|r}
3 & \hphantom{-} 1 & 0 & 1 & 6 \
2 & 1 & -1 & 0 & 4 \
0 & 1 & -3 & -2 & 0 \
\end{array} \right]
&
\xrightarrow{\text{Replace $R1$ with $\frac{1}{3}R1$}}
&
\left[ \begin{array}{rrrr|r}
1 & \frac{1}{3} & 0 & \frac{1}{3} & 2 \
2 & \hphantom{-}1 & -1 & 0 & 4 \
0 & 1 & -3 & -2 & 0 \
\end{array} \right]
\end{array}\]
Finally, we have an example of replacing a row with itself plus a multiple of another row using the second step from part 2 in Example
\[ \begin{array}{ccc}
\left\{
\begin{array}{lrcr}
(E1) & x+\frac{3}{2}y-\frac{1}{2}z & = & \frac{1}{2} \
(E2) & 10x-z & = & 2 \
(E3) & 4x-9y+2z & = & 5 \
\end{array}
\right.
&
\xrightarrow[\text{Replace $E3$ with $-4E1 + E3$}]{\text{Replace $E2$ with $-10E1 + E2$}}
&
\left\{
\begin{array}{lrcr}
(E1) & x+\frac{3}{2}y-\frac{1}{2}z & = & \frac{1}{2} \
(E2) & -15y+4z & = & -3 \
(E3) & -15y+4z & = & 3 \
\end{array}
\right.
\end{array} \]
\[\begin{array}{ccc}
\left[ \begin{array}{rrr|r}
1 & \frac{3}{2} & -\frac{1}{2} & \frac{1}{2} \
10 & 0 & -1 & 2 \
4 & -9 & 2 & 5 \
\end{array} \right]
&
\xrightarrow[\text{Replace $R3$ with $-4R1 + R3$}]{\text{Replace $R2$ with $-10R1 + R2$}}
&
\left[ \begin{array}{rrr|r}
1 & \frac{3}{2} & -\frac{1}{2} & \frac{1}{2} \
0 & -15 & 4 & -3 \
0 & -15 & 4 & 3 \
\end{array} \right]
\end{array}\]
The matrix equivalent of `triangular form' is \index{matrix ! row echelon form} \index{row echelon form} \textbf{row echelon form}. The reader is encouraged to refer to Definition
\smallskip
\colorbox{ResultColor}{\bbm
\begin{defn} \label{rowechelonform} A matrix is said to be in \textbf{row echelon form} provided all of the following conditions hold:
\begin{enumerate}
\item The first nonzero entry in each row is $1$.
\item The leading $1$ of a given row must be to the right of the leading $1$ of the row above it.
\item Any row of all zeros cannot be placed above a row with nonzero entries.
\end{enumerate}
\end{defn}
\ebm}
\smallskip
To solve a system of a linear equations using an augmented matrix, we encode the system into an augmented matrix and apply Gaussian Elimination to the rows to get the matrix into row-echelon form. We then decode the matrix and back substitute. The next example illustrates this nicely.
\begin{ex} \label{GaussExMatrix} Use an augmented matrix to transform the following system of linear equations into triangular form. Solve the system.
{\bf Solution.} We first encode the system into an augmented matrix.
\[ \begin{array}{ccc}
\left\{
&
\xrightarrow{\text{Encode into the matrix}}
&
\left[
\end{array}\]
Thinking back to Gaussian Elimination at an equations level, our first order of business is to get $x$ in $E1$ with a coefficient of $1$. At the matrix level, this means getting a leading $1$ in $R1$. This is in accordance with the first criteria in Definition
\[\begin{array}{ccc}
\left[ \begin{array}{rrr|r}
3 & -1 & 1 & 8 \
1 & 2 & -1 & 4 \
2 & 3 & -4 & 10 \
\end{array} \right]
&
\xrightarrow{\text{Switch $R1$ and $R2$}}
&
\left[ \begin{array}{rrr|r}
1 & 2 & -1 & 4 \
3 & -1 & 1 & 8 \
2 & 3 & -4 & 10 \
\end{array} \right]
\end{array}\]
Our next step is to eliminate the $x$'s from $E2$ and $E3$. From a matrix standpoint, this means we need $0$'s below the leading $1$ in $R1$. This guarantees the leading $1$ in $R2$ will be to the right of the leading $1$ in $R1$ in accordance with the second requirement of Definition
\[\begin{array}{ccc}
\left[ \begin{array}{rrr|r}
1 & 2 & -1 & 4 \
3 & -1 & 1 & 8 \
2 & 3 & -4 & 10 \
\end{array} \right]
&
\xrightarrow[\text{Replace $R3$ with $-2R1+R3$}]{\text{Replace $R2$ with $-3R1 +R2$}}
&
\left[ \begin{array}{rrr|r}
1 & 2 & -1 & 4 \
0 & -7 & 4 & -4 \
0 & -1 & -2 & 2 \
\end{array} \right]
\end{array}\]
Now we repeat the above process for the variable $y$ which means we need to get the leading entry in $R2$ to be $1$.
\[\begin{array}{ccc}
\left[ \begin{array}{rrr|r}
1 & 2 & -1 & 4 \
0 & -7 & 4 & -4 \
0 & -1 & -2 & 2 \
\end{array} \right]
&
\xrightarrow{\text{Replace $R2$ with $-\frac{1}{7}R2$}}
&
\left[ \begin{array}{rrr|r}
1 & 2 & -1 & 4 \
0 & 1 & -\frac{4}{7} & \frac{4}{7} \
0 & -1 & -2 & 2 \
\end{array} \right]
\end{array}\]
To guarantee the leading $1$ in $R3$ is to the right of the leading $1$ in $R2$, we get a $0$ in the second column of $R3$.
\[ \begin{array}{ccc}
\left[ \begin{array}{rrr|r}
1 & 2 & -1 & 4 \
0 & 1 & -\frac{4}{7} & \frac{4}{7} \
0 & -1 & -2 & 2 \
\end{array} \right]
&
\xrightarrow{\text{Replace $R3$ with $R2+R3$}}
&
\left[ \begin{array}{rrr|r}
1 & \hphantom{-}2 & -1 & 4 \ [2pt]
0 & 1 & -\frac{4}{7} & \frac{4}{7} \ [2pt]
0 & 0 & -\frac{18}{7} & \frac{18}{7} \
\end{array} \right]
\end{array}\]
Finally, we get the leading entry in $R3$ to be $1$.
\[\begin{array}{ccc}
\left[ \begin{array}{rrr|r}
1 & \hphantom{-}2 & -1 & 4 \ [2pt]
0 & 1 & -\frac{4}{7} & \frac{4}{7} \ [2pt]
0 & 0 & -\frac{18}{7} & \frac{18}{7} \
\end{array} \right]
&
\xrightarrow{\text{Replace $R3$ with $-\frac{7}{18}R3$}}
&
\left[ \begin{array}{rrr|r}
1 & \hphantom{-}2 & -1 & 4 \
0 & 1 & -\frac{4}{7} & \frac{4}{7} \
0 & 0 &1 & -1 \
\end{array} \right]
\end{array}\]
Decoding from the matrix gives a system in triangular form
\[ \begin{array}{ccc}
\left[ \begin{array}{rrr|r}
1 & \hphantom{-}2 & -1 & 4 \
0 & 1 & -\frac{4}{7} & \frac{4}{7} \
0 & 0 &1 & -1 \
\end{array} \right]
&
\xrightarrow{\text{Decode from the matrix}}
&
\left \{ \begin{array}{rcr}
x + 2y-z & = & 4 \
y - \frac{4}{7} z & = & \frac{4}{7} \
z & = & -1 \end{array} \right.
\end{array}\]
We get $z=-1$, $y = \frac{4}{7} z + \frac{4}{7} = \frac{4}{7}(-1)+\frac{4}{7} = 0$ and $x = -2y+z+4 = -2(0)+(-1)+4 = 3$ for a final answer of $(3,0,-1)$. We leave it to the reader to check. \qed
\end{ex}
As part of Gaussian Elimination, we used row operations to obtain $0$'s beneath each leading $1$ to put the matrix into row echelon form. If we also require that $0$'s are the only numbers above a leading $1$, we have what is known as the \index{matrix ! reduced row echelon form} \index{reduced row echelon form} \textbf{reduced row echelon form} of the matrix.
\smallskip
\colorbox{ResultColor}{\bbm
\begin{defn} \label{reducedrowechelonform} A matrix is said to be in \textbf{reduced row echelon form} provided both of the following conditions hold:
\begin{enumerate}
\item The matrix is in row echelon form.
\item The leading $1$s are the only nonzero entry in their respective columns.
\end{enumerate}
\end{defn}
\ebm}
\smallskip
Of what significance is the reduced row echelon form of a matrix? To illustrate, let's take the row echelon form from Example
\[ \begin{array}{ccc}
\left[ \begin{array}{rrr|r}
1 & \hphantom{-}2 & -1 & 4 \
0 & 1 & -\frac{4}{7} & \frac{4}{7} \
0 & 0 &1 & -1 \
\end{array} \right]
&
\xrightarrow[\text{Replace $R2$ with $\frac{4}{7} R3 + R2$}]{\text{Replace $R1$ with $R3+R1$}}
&
\left[ \begin{array}{rrr|r}
1 & 2 & 0 & 3 \
0 & 1 & 0 & 0 \
0 & 0 &1 & -1 \
\end{array} \right]
\end{array}\]
Finally, we take care of the $2$ in $R1$ above the leading $1$ in $R2$.
\[ \begin{array}{ccc}
\left[ \begin{array}{rrr|r}
1 & 2 & 0 & 3 \
0 & 1 & 0 & 0 \
0 & 0 &1 & -1 \
\end{array} \right]
&
\xrightarrow{\text{Replace $R1$ with $-2R2+R1$}}
&
\left[ \begin{array}{rrr|r}
1 & 0 & 0 & 3 \
0 & 1 & 0 & 0 \
0 & 0 &1 & -1 \
\end{array} \right]
\end{array}\]
To our surprise and delight, when we decode this matrix, we obtain the solution instantly without having to deal with any back-substitution at all.
\[ \begin{array}{ccc}
\left[ \begin{array}{rrr|r}
1 & 0 & 0 & 3 \
0 & 1 & 0 & 0 \
0 & 0 &1 & -1 \
\end{array} \right]
&
\xrightarrow{\text{Decode from the matrix}}
&
\left\{ \begin{array}{rcr}
x & = & 3 \
y & = & 0 \
z & = & -1 \end{array} \right.
\end{array}\]
Note that in the previous discussion, we could have started with $R2$ and used it to get a zero above its leading $1$ and then done the same for the leading $1$ in $R3$. By starting with $R3$, however, we get more zeros first, and the more zeros there are, the faster the remaining calculations will be.\footnote{Carl also finds starting with $R3$ to be more symmetric, in a purely poetic way.} It is also worth noting that while a matrix has several\footnote{infinite, in fact} row echelon forms, it has only one reduced row echelon form. The process by which we have put a matrix into reduced row echelon form is called \index{system of equations ! Gauss-Jordan Elimination} \index{Gauss-Jordan Elimination} \textbf{Gauss-Jordan Elimination}.
\begin{ex} Solve the following system using an augmented matrix. Use Gauss-Jordan Elimination to put the augmented matrix into reduced row echelon form.
\[\left \{ \begin{array}{rcr}
x_{\mbox{\tiny$2$}} - 3x_{\mbox{\tiny$1$}} + x_{\mbox{\tiny$4$}} & = & 2 \
2x_{\mbox{\tiny$1$}} + 4x_{\mbox{\tiny$3$}} & = & 5 \
4x_{\mbox{\tiny$2$}}-x_{\mbox{\tiny$4$}} & = & 3 \end{array} \right.\]
{\bf Solution.} We first encode the system into a matrix. (Pay attention to the subscripts!)
\[ \begin{array}{ccc}
\left\{ \begin{array}{rcr}
x_{\mbox{\tiny$2$}} - 3x_{\mbox{\tiny$1$}} + x_{\mbox{\tiny$4$}} & = & 2 \
2x_{\mbox{\tiny$1$}} + 4x_{\mbox{\tiny$3$}} & = & 5 \
4x_{\mbox{\tiny$2$}}-x_{\mbox{\tiny$4$}} & = & 3 \end{array} \right.
&
\xrightarrow{\text{Encode into the matrix}}
&
\left[ \begin{array}{rrrr|r}
-3 & \hphantom{-}1 & \hphantom{-}0 & 1 & 2 \
2 & 0 & 4 & 0 & 5 \
0 & 4 & 0 & -1 & 3 \ \end{array} \right]
\end{array}\]
Next, we get a leading $1$ in the first column of $R1$.
\[ \begin{array}{ccc}
\left[ \begin{array}{rrrr|r}
-3 & \hphantom{-}1 & \hphantom{-}0 & 1 & 2 \
2 & 0 & 4 & 0 & 5 \
0 & 4 & 0 & -1 & 3 \ \end{array} \right]
&
\xrightarrow{\text{Replace $R1$ with $-\frac{1}{3}R1$}}
&
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & \hphantom{-}0 & -\frac{1}{3} & -\frac{2}{3} \
2 & 0 & 4 & 0 & 5 \
0 & 4 & 0 & -1 & 3 \ \end{array} \right]
\end{array}\]
Now we eliminate the nonzero entry below our leading $1$.
\[ \begin{array}{ccc}
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & \hphantom{-}0 & -\frac{1}{3} & -\frac{2}{3} \
2 & 0 & 4 & 0 & 5 \
0 & 4 & 0 & -1 & 3 \ \end{array} \right]
&
\xrightarrow{\text{Replace $R2$ with $-2R1+R2$}}
&
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & \hphantom{-}0 & -\frac{1}{3} & -\frac{2}{3} \ [2pt]
0 & \frac{2}{3} & 4 & \frac{2}{3} & \frac{19}{3} \ [2pt]
0 & 4 & 0 & -1 & 3 \ \end{array} \right]
\end{array}\]
We proceed to get a leading $1$ in $R2$.
\[ \begin{array}{ccc}
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & \hphantom{-}0 & -\frac{1}{3} & -\frac{2}{3} \ [2pt]
0 & \frac{2}{3} & 4 & \frac{2}{3} & \frac{19}{3} \ [2pt]
0 & 4 & 0 & -1 & 3 \ \end{array} \right]
&
\xrightarrow{\text{Replace $R2$ with $\frac{3}{2}R2$}}
&
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & \hphantom{-}0 & -\frac{1}{3} & -\frac{2}{3} \ [2pt]
0 & 1 & 6 & 1 & \frac{19}{2} \ [2pt]
0 & 4 & 0 & -1 & 3 \ \end{array} \right]
\end{array}\]
We now zero out the entry below the leading $1$ in $R2$.
\[ \begin{array}{ccc}
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & \hphantom{-}0 & -\frac{1}{3} & -\frac{2}{3} \ [2pt]
0 & 1 & 6 & 1 & \frac{19}{2} \ [2pt]
0 & 4 & 0 & -1 & 3 \ \end{array} \right]
&
\xrightarrow{\text{Replace $R3$ with $-4R2+R3$}}
&
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & 0 & -\frac{1}{3} & -\frac{2}{3} \ [2pt]
0 & 1 & 6 & 1 & \frac{19}{2} \ [2pt]
0 & 0& -24 & -5 & -35 \ \end{array} \right]
\end{array}\]
Next, it's time for a leading $1$ in $R3$.
\[ \begin{array}{ccc}
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & 0 & -\frac{1}{3} & -\frac{2}{3} \ [2pt]
0 & 1 & 6 & 1 & \frac{19}{2} \ [2pt]
0 & 0& -24 & -5 & -35 \ \end{array} \right]
&
\xrightarrow{\text{Replace $R3$ with $-\frac{1}{24}R3$}}
&
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & \hphantom{-}0 & -\frac{1}{3} & -\frac{2}{3} \ [2pt]
0 & 1 & 6 & 1 & \frac{19}{2} \ [2pt]
0 & 0& 1 & \frac{5}{24} & \frac{35}{24} \ \end{array} \right]
\end{array}\]
The matrix is now in row echelon form. To get the reduced row echelon form, we start with the last leading $1$ we produced and work to get $0$'s above it.
\[ \begin{array}{ccc}
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & \hphantom{-}0 & -\frac{1}{3} & -\frac{2}{3} \ [2pt]
0 & 1 & 6 & 1 & \frac{19}{2} \ [2pt]
0 & 0& 1 & \frac{5}{24} & \frac{35}{24} \ \end{array} \right]&
\xrightarrow{\text{Replace $R2$ with $-6R3+R2$}}
&
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & \hphantom{-}0 & -\frac{1}{3} & -\frac{2}{3} \ [2pt]
0 & 1 & 0 & -\frac{1}{4} & \frac{3}{4} \ [2pt]
0 & 0& 1 & \frac{5}{24} & \frac{35}{24} \ \end{array} \right]
\end{array}\]
Lastly, we get a $0$ above the leading $1$ of $R2$.
\[ \begin{array}{ccc}
\left[ \begin{array}{rrrr|r}
1 & -\frac{1}{3} & \hphantom{-}0 & -\frac{1}{3} & -\frac{2}{3} \ [2pt]
0 & 1 & 0 & -\frac{1}{4} & \frac{3}{4} \ [2pt]
0 & 0& 1 & \frac{5}{24} & \frac{35}{24} \ \end{array} \right]
&
\xrightarrow{\text{Replace $R1$ with $\frac{1}{3}R2+R1$}}
&
\left[ \begin{array}{rrrr|r}
1 & \hphantom{-}0 & \hphantom{-}0 & -\frac{5}{12} & -\frac{5}{12} \ [2pt]
0 & 1 & 0 & -\frac{1}{4} & \frac{3}{4} \ [2pt]
0 & 0& 1 & \frac{5}{24} & \frac{35}{24} \ \end{array} \right]
\end{array}\]
At last, we decode to get
\[ \begin{array}{ccc}
\left[ \begin{array}{rrrr|r}
1 & \hphantom{-}0 & \hphantom{-}0 & -\frac{5}{12} & -\frac{5}{12} \ [2pt]
0 & 1 & 0 & -\frac{1}{4} & \frac{3}{4} \ [2pt]
0 & 0& 1 & \frac{5}{24} & \frac{35}{24} \ \end{array} \right]
&
\xrightarrow{\text{Decode from the matrix}}
&
\left\{ \begin{array}{rcr}
x_{\mbox{\tiny$1$}} - \frac{5}{12} x_{\mbox{\tiny$4$}} & = & -\frac{5}{12} \ [2pt]
x_{\mbox{\tiny$2$}} - \frac{1}{4}x_{\mbox{\tiny$4$}} & = & \frac{3}{4} \ [2pt]
x_{\mbox{\tiny$3$}} + \frac{5}{24} x_{\mbox{\tiny$4$}} & = & \frac{35}{24} \end{array} \right.
\end{array}\]
We have that $x_{\mbox{\tiny$4$}}$ is free and we assign it the parameter $t$. We obtain $x_{\mbox{\tiny$3$}} = -\frac{5}{24} t + \frac{35}{24}$, $x_{\mbox{\tiny$2$}} = \frac{1}{4} t + \frac{3}{4}$, and $x_{\mbox{\tiny$1$}} = \frac{5}{12}t - \frac{5}{12}$. Our solution is $\left\{ \left( \frac{5}{12}t - \frac{5}{12}, \frac{1}{4} t + \frac{3}{4}, -\frac{5}{24} t + \frac{35}{24}, t \right) : -\infty < t < \infty \right\}$ and leave it to the reader to check. \qed
\end{ex}
Like all good algorithms, putting a matrix in row echelon or reduced row echelon form can easily be programmed into a calculator, and, doubtless, your graphing calculator has such a feature. We use this in our next example.
\begin{ex} \label{matrixcurvefitting} Find the quadratic function passing through the points $(-1,3)$, $(2,4)$, $(5,-2)$.
\smallskip
{\bf Solution.} According to Definition
\[ \begin{array}{ccc}
\left\{ \begin{array}{rcr}
a-b+c & = & 3 \
4a+2b+c & = & 4 \
25a+5b+c & = & -2 \end{array} \right.
&
\xrightarrow{\text{Encode into the matrix}}
&
\left[ \begin{array}{rrr|r}
1 & -1 & \hphantom{-}1 & 3 \
4 & 2 & 1 & 4 \
25 & 5 & 1 & -2 \ \end{array} \right]
\end{array}\]
Using a calculator,\footnote{We've tortured you enough already with fractions in this exposition!} we find $a = -\frac{7}{18}$, $b = \frac{13}{18}$ and $c = \frac{37}{9}$. Hence, the one and only quadratic which fits the bill is $f(x) = -\frac{7}{18} x^2 + \frac{13}{18} x + \frac{37}{9}$. To verify this analytically, we see that $f(-1) = 3$, $f(2) = 4$, and $f(5) = -2$. We can use the calculator to check our solution as well by plotting the three data points and the function $f$.
\begin{center}
\begin{tabular}{cc}
\includegraphics[width=2in]{./MatricesGraphics/RREF01.jpg} \hspace{.5in} & \includegraphics[width=2in]{./MatricesGraphics/QUADFIT01.jpg} \
& The graph of $f(x) = -\frac{7}{18} x^2 + \frac{13}{18} x + \frac{37}{9}$ \ & with the points $(-1,3)$, $(2,4)$ and $(5,-2)$ \
\end{tabular}
\end{center}
\qed
\end{ex}

