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