<exercise checkit-seed="0003" checkit-slug="E1" checkit-title="Linear systems, vector equations, and augmented matrices">
<statement>
<p> Consider the system of equations</p>
<me>\begin{matrix}
x & - & y & + & 4 \, z & = & 4 \\
2 \, x & - & y & + & 4 \, z & = & 7 \\
& - & y & + & 5 \, z & = & 1 \\
& & & - & 2 \, z & = & 0 \\
\end{matrix}</me>
<ol>
<li> Write an augmented matrix corresponding to this system. </li>
<li> Write a vector equation corresponding to this system. </li>
</ol>
</statement>
<answer>
<ol>
<li><me>\left[\begin{array}{ccc|c}
1 & -1 & 4 & 4 \\
2 & -1 & 4 & 7 \\
0 & -1 & 5 & 1 \\
0 & 0 & -2 & 0
\end{array}\right]</me></li>
<li><me>x_{1} \left[\begin{array}{c}
1 \\
2 \\
0 \\
0
\end{array}\right] + x_{2} \left[\begin{array}{c}
-1 \\
-1 \\
-1 \\
0
\end{array}\right] + x_{3} \left[\begin{array}{c}
4 \\
4 \\
5 \\
-2
\end{array}\right] = \left[\begin{array}{c}
4 \\
7 \\
1 \\
0
\end{array}\right]</me></li>
</ol>
</answer>
</exercise>