Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
3774 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
-4 \\
6
5 \\
7
-4 \\
8
2
9
\end{array}\right] + x_{2} \left[\begin{array}{c}
10
-4 \\
11
5 \\
12
-4 \\
13
2
14
\end{array}\right] + x_{3} \left[\begin{array}{c}
15
-1 \\
16
1 \\
17
2 \\
18
4
19
\end{array}\right] = \left[\begin{array}{c}
20
-5 \\
21
7 \\
22
-14 \\
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
31
<answer>
32
<ol>
33
<li><me>\begin{matrix}
34
-4 \, x_{1} &amp; - &amp; 4 \, x_{2} &amp; - &amp; x_{3} &amp; = &amp; -5 \\
35
5 \, x_{1} &amp; + &amp; 5 \, x_{2} &amp; + &amp; x_{3} &amp; = &amp; 7 \\
36
-4 \, x_{1} &amp; - &amp; 4 \, x_{2} &amp; + &amp; 2 \, x_{3} &amp; = &amp; -14 \\
37
2 \, x_{1} &amp; + &amp; 2 \, x_{2} &amp; + &amp; 4 \, x_{3} &amp; = &amp; -8 \\
38
\end{matrix}</me></li>
39
<li><me>\left[\begin{array}{ccc|c}
40
-4 &amp; -4 &amp; -1 &amp; -5 \\
41
5 &amp; 5 &amp; 1 &amp; 7 \\
42
-4 &amp; -4 &amp; 2 &amp; -14 \\
43
2 &amp; 2 &amp; 4 &amp; -8
44
\end{array}\right]</me></li>
45
</ol>
46
</answer>
47
</exercise>
48
49