Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Views: 1794
Image: ubuntu2004
1
<exercise>
2
<statement>
3
<xsl:choose>
4
<xsl:when test="prompt='system'">
5
<p> Consider the system of equations
6
<md alignment="alignat">
7
<xsl:attribute name="alignat-columns"><xsl:value-of select="alignCols"/></xsl:attribute>
8
<xsl:for-each select="system/*">
9
<mrow><xsl:value-of select="."/></mrow>
10
</xsl:for-each>
11
</md></p>
12
<ol>
13
<li> Write an augmented matrix corresponding to this system. </li>
14
<li> Write a vector equation corresponding to this system. </li>
15
</ol>
16
</xsl:when>
17
<xsl:when test="prompt='matrix'">
18
<p> Consider the augmented matrix </p>
19
<me><xsl:value-of select="matrix"/></me>
20
<ol>
21
<li> Write a system of scalar equations corresponding to this augmented matrix. </li>
22
<li> Write a vector equation corresponding to this augmented matrix. </li>
23
</ol>
24
</xsl:when>
25
<xsl:otherwise>
26
<p>Consider the vector equation.</p>
27
<me><xsl:value-of select="vectorequation"/></me>
28
<ol>
29
<li> Write a system of scalar equations corresponding to this vector equation. </li>
30
<li> Write an augmented matrix corresponding to this vector equation. </li>
31
</ol>
32
</xsl:otherwise>
33
</xsl:choose>
34
</statement>
35
36
<answer>
37
<xsl:choose>
38
<xsl:when test="prompt='system'">
39
<ol>
40
<li><me><xsl:value-of select="matrix"/></me> </li>
41
<li>
42
<me><xsl:value-of select="vectorequation"/></me>
43
</li>
44
</ol>
45
</xsl:when>
46
<xsl:when test="prompt='matrix'">
47
<ol>
48
<li>
49
<md alignment="alignat">
50
<xsl:attribute name="alignat-columns"><xsl:value-of select="alignCols"/></xsl:attribute>
51
<xsl:for-each select="system/*">
52
<mrow><xsl:value-of select="."/></mrow>
53
</xsl:for-each>
54
</md>
55
</li>
56
<li>
57
<me><xsl:value-of select="vectorequation"/></me>
58
</li>
59
</ol>
60
</xsl:when>
61
<xsl:otherwise>
62
<ol>
63
<li>
64
<md alignment="alignat">
65
<xsl:attribute name="alignat-columns"><xsl:value-of select="alignCols"/></xsl:attribute>
66
<xsl:for-each select="system/*">
67
<mrow><xsl:value-of select="."/></mrow>
68
</xsl:for-each>
69
</md>
70
</li>
71
<li><me><xsl:value-of select="matrix"/></me> </li>
72
</ol>
73
</xsl:otherwise>
74
</xsl:choose>
75
</answer>
76
</exercise>
77