Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
3774 views
ubuntu2004
1
<?xml version='1.0' encoding='UTF-8'?>
2
<exercise xmlns="https://spatext.clontz.org" version="0.0">
3
<statement>
4
<p>Let <m>A</m> be a <m>4 \times 4</m> matrix.</p>
5
<ol>
6
<li>Give a <m>4 \times 4</m> matrix <m>{{name1}}</m> that may be used to perform the row operation <m>{{row_op1}}</m>.</li>
7
<li>Give a <m>4 \times 4</m> matrix <m>{{name2}}</m> that may be used to perform the row operation <m>{{row_op2}}</m>.</li>
8
<li>Use matrix multiplication to describe the matrix obtained by applying
9
{{#swapped}}
10
<m>{{row_op2}}</m> and then <m>{{row_op1}}</m>
11
{{/swapped}}
12
{{^swapped}}
13
<m>{{row_op1}}</m> and then <m>{{row_op2}}</m>
14
{{/swapped}}
15
to <m>A</m> (note the order).
16
</li>
17
</ol>
18
</statement>
19
<answer>
20
<ol>
21
<li><m>{{name1}}={{mat1}}</m></li>
22
<li><m>{{name2}}={{mat2}}</m></li>
23
<li>
24
{{#swapped}}
25
<m>{{name1}}{{name2}}A</m>
26
{{/swapped}}
27
{{^swapped}}
28
<m>{{name2}}{{name1}}A</m>
29
{{/swapped}}
30
</li>
31
</ol>
32
</answer>
33
</exercise>
34