Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Path: banks / tbil-la / E1.ptx
Views: 19480
Image: ubuntu2004
1
<exercise>
2
<statement>
3
<xsl:choose>
4
<xsl:when test="prompt='system'">
5
<p> Consider the system of equations</p>
6
<me><xsl:value-of select="system"/></me>
7
<ol>
8
<li> Write an augmented matrix corresponding to this system. </li>
9
<li> Write a vector equation corresponding to this system. </li>
10
</ol>
11
</xsl:when>
12
<xsl:when test="prompt='matrix'">
13
<p> Consider the augmented matrix </p>
14
<me><xsl:value-of select="matrix"/></me>
15
<ol>
16
<li> Write a system of scalar equations corresponding to this augmented matrix. </li>
17
<li> Write a vector equation corresponding to this augmented matrix. </li>
18
</ol>
19
</xsl:when>
20
<xsl:otherwise>
21
<p>Consider the vector equation.</p>
22
<me><xsl:value-of select="vectorequation"/></me>
23
<ol>
24
<li> Write a system of scalar equations corresponding to this vector equation. </li>
25
<li> Write an augmented matrix corresponding to this vector equation. </li>
26
</ol>
27
</xsl:otherwise>
28
</xsl:choose>
29
</statement>
30
31
<answer>
32
<xsl:choose>
33
<xsl:when test="prompt='system'">
34
<ol>
35
<li><me><xsl:value-of select="matrix"/></me> </li>
36
<li>
37
<me><xsl:value-of select="vectorequation"/></me>
38
</li>
39
</ol>
40
</xsl:when>
41
<xsl:when test="prompt='matrix'">
42
<ol>
43
<li>
44
<me><xsl:value-of select="system"/></me>
45
</li>
46
<li>
47
<me><xsl:value-of select="vectorequation"/></me>
48
</li>
49
</ol>
50
</xsl:when>
51
<xsl:otherwise>
52
<ol>
53
<li>
54
<me><xsl:value-of select="system"/></me>
55
</li>
56
<li><me><xsl:value-of select="matrix"/></me> </li>
57
</ol>
58
</xsl:otherwise>
59
</xsl:choose>
60
</answer>
61
</exercise>
62