Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23128 views
ubuntu2004
1
<exercise checkit-seed="0011" checkit-slug="E1" checkit-title="Linear systems, vector equations, and augmented matrices">
2
<statement>
3
<p> Consider the augmented matrix </p>
4
<me> \left[\begin{array}{ccc|c}
5
-1 &amp; -3 &amp; 5 &amp; 3 \\
6
0 &amp; 1 &amp; -1 &amp; -2 \\
7
2 &amp; 3 &amp; -7 &amp; 0 \\
8
1 &amp; 1 &amp; -3 &amp; 1
9
\end{array}\right] </me>
10
<ol>
11
<li> Write a system of scalar equations corresponding to this augmented matrix. </li>
12
<li> Write a vector equation corresponding to this augmented matrix. </li>
13
</ol>
14
</statement>
15
<answer>
16
<ol>
17
<li>
18
<me>\begin{matrix}
19
-x_{1} &amp; - &amp; 3 \, x_{2} &amp; + &amp; 5 \, x_{3} &amp; = &amp; 3 \\
20
&amp; &amp; x_{2} &amp; - &amp; x_{3} &amp; = &amp; -2 \\
21
2 \, x_{1} &amp; + &amp; 3 \, x_{2} &amp; - &amp; 7 \, x_{3} &amp; = &amp; 0 \\
22
x_{1} &amp; + &amp; x_{2} &amp; - &amp; 3 \, x_{3} &amp; = &amp; 1 \\
23
\end{matrix}</me>
24
</li>
25
<li>
26
<me> x_{1} \left[\begin{array}{c}
27
-1 \\
28
0 \\
29
2 \\
30
1
31
\end{array}\right] + x_{2} \left[\begin{array}{c}
32
-3 \\
33
1 \\
34
3 \\
35
1
36
\end{array}\right] + x_{3} \left[\begin{array}{c}
37
5 \\
38
-1 \\
39
-7 \\
40
-3
41
\end{array}\right] = \left[\begin{array}{c}
42
3 \\
43
-2 \\
44
0 \\
45
1
46
\end{array}\right] </me>
47
</li>
48
</ol>
49
</answer>
50
</exercise>
51
52
53