<exercise checkit-seed="0002" checkit-slug="M2" checkit-title="Row operations as matrix multiplication">
<statement>
<p>Let <m>A</m> be a <m>4 \times 4</m> matrix.</p>
<ol>
<li>Give a <m>4 \times 4</m> matrix <m>B</m> that may be used to perform the row operation <m> R_2 \to R_2 + 5R_3 </m>.</li>
<li>Give a <m>4 \times 4</m> matrix <m>C</m> that may be used to perform the row operation <m> R_4 \to -2R_4 </m>.</li>
<li>Use matrix multiplication to describe the matrix obtained by applying
<m> R_4 \to -2R_4 </m> and then <m> R_2 \to R_2 + 5R_3 </m>
to <m>A</m> (note the order).
</li>
</ol>
</statement>
<answer>
<ol>
<li>
<m>B= \left[\begin{array}{cccc}
1 & 0 & 0 & 0 \\
0 & 1 & 5 & 0 \\
0 & 0 & 1 & 0 \\
0 & 0 & 0 & 1
\end{array}\right] </m>
</li>
<li>
<m>C= \left[\begin{array}{cccc}
1 & 0 & 0 & 0 \\
0 & 1 & 0 & 0 \\
0 & 0 & 1 & 0 \\
0 & 0 & 0 & -2
\end{array}\right] </m>
</li>
<li>
<m>BCA</m>
</li>
</ol>
</answer>
</exercise>