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