Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
3774 views
ubuntu2004
1
<?xml version='1.0' encoding='UTF-8'?>
2
<exercise xmlns="https://spatext.clontz.org" version="0.0">
3
<statement>
4
{{#prompt}}
5
{{#sys}}
6
<p> Consider the system of equations</p>
7
<me>{{system}}</me>
8
<ol>
9
<li> Write an augmented matrix corresponding to this system. </li>
10
<li> Write a vector equation corresponding to this system. </li>
11
</ol>
12
{{/sys}}
13
{{#mat}}
14
<p> Consider the augmented matrix </p>
15
<me>{{matrix}}</me>
16
<ol>
17
<li> Write a system of scalar equations corresponding to this augmented matrix. </li>
18
<li> Write a vector equation corresponding to this augmented matrix. </li>
19
</ol>
20
{{/mat}}
21
{{#vec}}
22
<p>Consider the vector equation.</p>
23
<me>{{vectorequation}}</me>
24
<ol>
25
<li> Write a system of scalar equations corresponding to this vector equation. </li>
26
<li> Write an augmented matrix corresponding to this vector equation. </li>
27
</ol>
28
{{/vec}}
29
{{/prompt}}
30
</statement>
31
32
<answer>
33
<ol>
34
{{#prompt}}
35
{{#sys}}
36
<li><me>{{matrix}}</me></li>
37
<li><me>{{vectorequation}}</me></li>
38
{{/sys}}
39
{{#mat}}
40
<li><me>{{system}}</me></li>
41
<li><me>{{vectorequation}}</me></li>
42
{{/mat}}
43
{{#vec}}
44
<li><me>{{system}}</me></li>
45
<li><me>{{matrix}}</me></li>
46
{{/vec}}
47
{{/prompt}}
48
</ol>
49
</answer>
50
</exercise>
51