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