\begin{exercise}{E1}{Linear systems, vector equations, and augmented matrices}{0005}
\begin{exerciseStatement}
Consider the vector equation.
\[ x_{1} \left[\begin{array}{c}
1 \\
1 \\
2
\end{array}\right] + x_{2} \left[\begin{array}{c}
-3 \\
-2 \\
-4
\end{array}\right] + x_{3} \left[\begin{array}{c}
7 \\
4 \\
8
\end{array}\right] + x_{4} \left[\begin{array}{c}
-4 \\
-3 \\
-6
\end{array}\right] = \left[\begin{array}{c}
4 \\
3 \\
6
\end{array}\right] \]
\begin{enumerate}[(a)]
\item Write a system of scalar equations corresponding to this vector equation.
\item Write an augmented matrix corresponding to this vector equation.
\end{enumerate}
\end{exerciseStatement}
\begin{exerciseAnswer}
\begin{enumerate}[(a)]
\item \[\begin{matrix}
x_{1} & - & 3 \, x_{2} & + & 7 \, x_{3} & - & 4 \, x_{4} & = & 4 \\
x_{1} & - & 2 \, x_{2} & + & 4 \, x_{3} & - & 3 \, x_{4} & = & 3 \\
2 \, x_{1} & - & 4 \, x_{2} & + & 8 \, x_{3} & - & 6 \, x_{4} & = & 6 \\
\end{matrix}\]
\item \[ \left[\begin{array}{cccc|c}
1 & -3 & 7 & -4 & 4 \\
1 & -2 & 4 & -3 & 3 \\
2 & -4 & 8 & -6 & 6
\end{array}\right] \]
\end{enumerate}
\end{exerciseAnswer}
\end{exercise}