Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23127 views
ubuntu2004
1
<exercise checkit-seed="0011" checkit-slug="E3" checkit-title="Solving linear systems">
2
<statement>
3
<p>Show how to find the solution set for the following
4
5
system of linear equations.
6
<me>\begin{matrix}
7
-x_{1} &amp; - &amp; 3 \, x_{2} &amp; + &amp; 5 \, x_{3} &amp; = &amp; 3 \\
8
&amp; &amp; x_{2} &amp; - &amp; x_{3} &amp; = &amp; -2 \\
9
2 \, x_{1} &amp; + &amp; 3 \, x_{2} &amp; - &amp; 7 \, x_{3} &amp; = &amp; 0 \\
10
x_{1} &amp; + &amp; x_{2} &amp; - &amp; 3 \, x_{3} &amp; = &amp; 1 \\
11
\end{matrix}</me></p>
12
</statement>
13
<answer>
14
<me>\mathrm{RREF} \left[\begin{array}{ccc|c}
15
-1 &amp; -3 &amp; 5 &amp; 3 \\
16
0 &amp; 1 &amp; -1 &amp; -2 \\
17
2 &amp; 3 &amp; -7 &amp; 0 \\
18
1 &amp; 1 &amp; -3 &amp; 1
19
\end{array}\right] = \left[\begin{array}{ccc|c}
20
1 &amp; 0 &amp; -2 &amp; 3 \\
21
0 &amp; 1 &amp; -1 &amp; -2 \\
22
0 &amp; 0 &amp; 0 &amp; 0 \\
23
0 &amp; 0 &amp; 0 &amp; 0
24
\end{array}\right] </me>
25
<p>The solution set is <m> \left\{ \left[\begin{array}{c}
26
2 \, a + 3 \\
27
a - 2 \\
28
a
29
\end{array}\right] \middle|\,a\in\mathbb{R}\right\} </m>.</p>
30
</answer>
31
</exercise>
32
33
34