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