Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Views: 1794
Image: ubuntu2004
1
<exercise>
2
<statement>
3
<ol>
4
<li>Show that <me>\operatorname{RREF}<xsl:value-of select="A"/>=<xsl:value-of select="rref"/>.</me></li>
5
<li>Explain why the matrix <m>B=<xsl:value-of select="B"/></m> is or is not in reduced row echelon form.</li>
6
</ol>
7
</statement>
8
<answer>
9
<ol>
10
<li><m>\operatorname{RREF}<xsl:value-of select="A"/>=<xsl:value-of select="rref"/>.</m></li>
11
<li>
12
<m>B</m> is
13
<xsl:choose>
14
<xsl:when test="Brref">
15
in reduced row echelon form because each pivot is a <m>1</m>, the pivots are descending to the right,
16
there are zeroes above and below each pivot, and all rows of zeroes are at the bottom.
17
</xsl:when>
18
<xsl:otherwise>
19
not in reduced row echelon form because
20
<xsl:choose>
21
<xsl:when test="rowop='elementary'">
22
not every entry above and below each pivot is zero.
23
</xsl:when>
24
<xsl:when test="rowop='permutation'">
25
the pivots are not descending to the right.
26
</xsl:when>
27
<xsl:otherwise>
28
the pivots are not all <m>1</m>.
29
</xsl:otherwise>
30
</xsl:choose>
31
</xsl:otherwise>
32
</xsl:choose>
33
</li>
34
</ol>
35
</answer>
36
</exercise>
37