\documentclass[a4paper,12pt]{article}
\begin{document}
\parindent=0pt

{\bf Question}

For the following system of equations $$ \left(\begin{array}{ccc}
1& 2 & 1 \\ 1 & 1 & -1 \\ 0 & -1 & 2 \end{array}
\right)\left(\begin{array}{c} x\\y\\z\end{array} \right) = \left(
\begin{array}{c} 6 \\ 7 \\ 3 \end{array} \right)$$
\begin{description}
\item[(a)] Write down the matrix and the augmented matrix
\item[(b)] Find the rank of both by the elimination method
\item[(c)] Use this information to determine whether the equations
have a solution, and if they do how many free variables there are.
\item[(d)] If they do have a solution, find it, and confirm that
indeed it has the right number of free variables.
\end{description}

\vspace{.25in}

{\bf Answer}

\begin{description}
\item[(a)]
$A = \left(\begin{array}{ccc} 1& 2 & 1 \\ 2 & 1 & -1 \\ 1 & -1 & 0
\end{array} \right) \hspace{.3in} A:b = \left(\begin{array}{cccc}
 1& 2 & 1 & 6\\ 2 & 1 & -1 & 7 \\ 1 & -1 & 0&3 \end{array} \right)$

\item[(b)] Use elimination method to find rank

$\left(\begin{array}{cccc} 1& 2 & 1 & 6\\ 2 & 1 & -1 & 7 \\ 1 & -1
& 0&3 \end{array} \right) \rightarrow\ ({\rm exchange\ rows\ 1,
2})
$

$\left(\begin{array}{cccc}  2 & 1 & -1 & 7 \\ 1& 2 & 1 & 6\\ 1 &
-1 & 0&3 \end{array} \right) \begin{array}{c}\rightarrow\ ({\rm
row}\  2 \rightarrow 2 {\rm row}\  2 - {\rm row}\  1) \\
\hspace{.3in} ({\rm row}\  3 \rightarrow  2 {\rm row}\  3 - {\rm
row}\ 1)\end{array}$

$\left(\begin{array}{cccc} 2& 1 & -1 & 7\\ 0 & 3 & 3 & 5 \\ 0 & -3
& 1&-1 \end{array} \right) \rightarrow\ ({\rm row}\  3 \rightarrow
{\rm row}\  3 + {\rm row}\  2)$

$\left(\begin{array}{cccc} 2& 1 & -1 & 7\\ 0 & 3 & 3 & 5 \\ 0 & 0
& 4&4 \end{array} \right)$

Hence both $r(A) = r(A:b) = 3$

\item[(c)]
Hence equations do have a solution and since $r(A) = r(A:b)$, no.
of free parameters = no of unknowns $-\ r(A) = 3-3 = 0$

\item[(d)]
Equations are \begin{eqnarray*} 2x + y - z & = & 7 \\ 3y + 3z & =
& 5 \\ 4z & = & 4\end{eqnarray*}

Let $z = 1 \Rightarrow y = \frac{2}{3} \Rightarrow 2x = 7 +z -y =
7+1-\frac{2}{3}=\frac{22}{3} \Rightarrow x = \frac{11}{3}$ and
${\bf x} = \left(\begin{array}{c} \frac{11}{3}
\\ \frac{2}{3}
\\ 1
\end{array} \right)$ with no free variable as expected.
\end{description}



\end{document}
