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