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