Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
3780 views
ubuntu2004
1
<exercise checkit-seed="0002" 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
-5 &amp; -3 &amp; 18 &amp; -14 \\
6
-3 &amp; -2 &amp; 11 &amp; -9 \\
7
-1 &amp; 3 &amp; 0 &amp; 8 \\
8
0 &amp; -1 &amp; 1 &amp; -3
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
16
<answer>
17
<ol>
18
<li><me>\begin{matrix}
19
-5 \, x_{1} &amp; - &amp; 3 \, x_{2} &amp; + &amp; 18 \, x_{3} &amp; = &amp; -14 \\
20
-3 \, x_{1} &amp; - &amp; 2 \, x_{2} &amp; + &amp; 11 \, x_{3} &amp; = &amp; -9 \\
21
-x_{1} &amp; + &amp; 3 \, x_{2} &amp; &amp; &amp; = &amp; 8 \\
22
&amp; - &amp; x_{2} &amp; + &amp; x_{3} &amp; = &amp; -3 \\
23
\end{matrix}</me></li>
24
<li><me>x_{1} \left[\begin{array}{c}
25
-5 \\
26
-3 \\
27
-1 \\
28
0
29
\end{array}\right] + x_{2} \left[\begin{array}{c}
30
-3 \\
31
-2 \\
32
3 \\
33
-1
34
\end{array}\right] + x_{3} \left[\begin{array}{c}
35
18 \\
36
11 \\
37
0 \\
38
1
39
\end{array}\right] = \left[\begin{array}{c}
40
-14 \\
41
-9 \\
42
8 \\
43
-3
44
\end{array}\right]</me></li>
45
</ol>
46
</answer>
47
</exercise>
48
49