Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23129 views
ubuntu2004
1
<exercise checkit-seed="0012" checkit-slug="E1" checkit-title="Linear systems, vector equations, and augmented matrices">
2
<statement>
3
<p> Consider the system of equations</p>
4
<me>\begin{matrix}
5
x &amp; + &amp; 2 \, y &amp; + &amp; z &amp; = &amp; 5 \\
6
-2 \, x &amp; - &amp; 3 \, y &amp; - &amp; z &amp; = &amp; -5 \\
7
x &amp; + &amp; y &amp; + &amp; z &amp; = &amp; 4 \\
8
2 \, x &amp; + &amp; 4 \, y &amp; &amp; &amp; = &amp; 2 \\
9
\end{matrix}</me>
10
<ol>
11
<li> Write an augmented matrix corresponding to this system. </li>
12
<li> Write a vector equation corresponding to this system. </li>
13
</ol>
14
</statement>
15
<answer>
16
<ol>
17
<li>
18
<me> \left[\begin{array}{ccc|c}
19
1 &amp; 2 &amp; 1 &amp; 5 \\
20
-2 &amp; -3 &amp; -1 &amp; -5 \\
21
1 &amp; 1 &amp; 1 &amp; 4 \\
22
2 &amp; 4 &amp; 0 &amp; 2
23
\end{array}\right] </me>
24
</li>
25
<li>
26
<me> x_{1} \left[\begin{array}{c}
27
1 \\
28
-2 \\
29
1 \\
30
2
31
\end{array}\right] + x_{2} \left[\begin{array}{c}
32
2 \\
33
-3 \\
34
1 \\
35
4
36
\end{array}\right] + x_{3} \left[\begin{array}{c}
37
1 \\
38
-1 \\
39
1 \\
40
0
41
\end{array}\right] = \left[\begin{array}{c}
42
5 \\
43
-5 \\
44
4 \\
45
2
46
\end{array}\right] </me>
47
</li>
48
</ol>
49
</answer>
50
</exercise>
51
52
53