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