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