Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Views: 1794
Image: ubuntu2004
1
<exercise>
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><xsl:value-of select="name1"/></m> that may be used to perform the row operation <m><xsl:value-of select="row_op1"/></m>.</li>
6
<li>Give a <m>4 \times 4</m> matrix <m><xsl:value-of select="name2"/></m> that may be used to perform the row operation <m><xsl:value-of select="row_op2"/></m>.</li>
7
<li>Use matrix multiplication to describe the matrix obtained by applying
8
<xsl:choose>
9
<xsl:when test="swapped"><m><xsl:value-of select="row_op2"/></m> and then <m><xsl:value-of select="row_op1"/></m></xsl:when>
10
<xsl:otherwise><m><xsl:value-of select="row_op1"/></m> and then <m><xsl:value-of select="row_op2"/></m></xsl:otherwise>
11
</xsl:choose>
12
to <m>A</m> (note the order).
13
</li>
14
</ol>
15
</statement>
16
<answer>
17
<ol>
18
<li><m><xsl:value-of select="name1"/>=<xsl:value-of select="mat1"/></m></li>
19
<li><m><xsl:value-of select="name2"/>=<xsl:value-of select="mat2"/></m></li>
20
<li>
21
<xsl:choose>
22
<xsl:when test="swapped"><m><xsl:value-of select="name1"/><xsl:value-of select="name2"/>A</m></xsl:when>
23
<xsl:otherwise><m><xsl:value-of select="name2"/><xsl:value-of select="name1"/>A</m></xsl:otherwise>
24
</xsl:choose>
25
</li>
26
</ol>
27
</answer>
28
</exercise>
29