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