Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23127 views
ubuntu2004
1
<exercise checkit-seed="0011" checkit-slug="M2" checkit-title="Row operations as matrix multiplication">
2
<statement>
3
<p>Let <m>A</m> be a <m>4 \times 4</m> matrix.</p>
4
<ol>
5
<li>Give a <m>4 \times 4</m> matrix <m>B</m> that may be used to perform the row operation <m> R_4 \to R_4 + 3R_2 </m>.</li>
6
<li>Give a <m>4 \times 4</m> matrix <m>Q</m> that may be used to perform the row operation <m> R_2 \leftrightarrow R_1 </m>.</li>
7
<li>Use matrix multiplication to describe the matrix obtained by applying
8
<m> R_2 \leftrightarrow R_1 </m> and then <m> R_4 \to R_4 + 3R_2 </m>
9
to <m>A</m> (note the order).
10
</li>
11
</ol>
12
</statement>
13
<answer>
14
<ol>
15
<li>
16
<m>B= \left[\begin{array}{cccc}
17
1 &amp; 0 &amp; 0 &amp; 0 \\
18
0 &amp; 1 &amp; 0 &amp; 0 \\
19
0 &amp; 0 &amp; 1 &amp; 0 \\
20
0 &amp; 3 &amp; 0 &amp; 1
21
\end{array}\right] </m>
22
</li>
23
<li>
24
<m>Q= \left[\begin{array}{cccc}
25
0 &amp; 1 &amp; 0 &amp; 0 \\
26
1 &amp; 0 &amp; 0 &amp; 0 \\
27
0 &amp; 0 &amp; 1 &amp; 0 \\
28
0 &amp; 0 &amp; 0 &amp; 1
29
\end{array}\right] </m>
30
</li>
31
<li>
32
<m>BQA</m>
33
</li>
34
</ol>
35
</answer>
36
</exercise>
37
38
39