Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Views: 1794
Image: ubuntu2004
1
<exercise>
2
<statement>
3
<p>Show how to find the solution set for the following
4
<xsl:choose>
5
<xsl:when test="prompt='system'">
6
system of linear equations.
7
<md alignment="alignat">
8
<xsl:attribute name="alignat-columns"><xsl:value-of select="alignCols"/></xsl:attribute>
9
<xsl:for-each select="system/*">
10
<mrow><xsl:value-of select="."/></mrow>
11
</xsl:for-each>
12
</md>
13
</xsl:when>
14
<xsl:otherwise>
15
vector equation <me><xsl:value-of select="vectoreq"/>.</me>
16
</xsl:otherwise>
17
</xsl:choose>
18
</p>
19
</statement>
20
21
<answer>
22
<me>\mathrm{RREF}<xsl:value-of select="matrix"/> = <xsl:value-of select="rref"/></me>
23
<p>The solution set is <m><xsl:value-of select="solution"/></m></p>
24
25
</answer>
26
</exercise>
27
28