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