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