Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23127 views
ubuntu2004
1
<exercise checkit-seed="0010" checkit-slug="E3" checkit-title="Solving linear systems">
2
<statement>
3
<p>Show how to find the solution set for the following
4
5
vector equation <me> x_{1} \left[\begin{array}{c}
6
1 \\
7
0 \\
8
1 \\
9
0
10
\end{array}\right] + x_{2} \left[\begin{array}{c}
11
6 \\
12
1 \\
13
-1 \\
14
2
15
\end{array}\right] + x_{3} \left[\begin{array}{c}
16
5 \\
17
2 \\
18
-4 \\
19
2
20
\end{array}\right] = \left[\begin{array}{c}
21
-7 \\
22
-1 \\
23
0 \\
24
-2
25
\end{array}\right] .</me></p>
26
</statement>
27
<answer>
28
<me>\mathrm{RREF} \left[\begin{array}{ccc|c}
29
1 &amp; 6 &amp; 5 &amp; -7 \\
30
0 &amp; 1 &amp; 2 &amp; -1 \\
31
1 &amp; -1 &amp; -4 &amp; 0 \\
32
0 &amp; 2 &amp; 2 &amp; -2
33
\end{array}\right] = \left[\begin{array}{ccc|c}
34
1 &amp; 0 &amp; 0 &amp; -1 \\
35
0 &amp; 1 &amp; 0 &amp; -1 \\
36
0 &amp; 0 &amp; 1 &amp; 0 \\
37
0 &amp; 0 &amp; 0 &amp; 0
38
\end{array}\right] </me>
39
<p>The solution set is <m> \left\{ \left[\begin{array}{c}
40
-1 \\
41
-1 \\
42
0
43
\end{array}\right] \right\} </m>.</p>
44
</answer>
45
</exercise>
46
47
48