Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23127 views
ubuntu2004
1
<exercise checkit-seed="0005" 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; 7 \, x_{3} &amp; - &amp; 4 \, x_{4} &amp; = &amp; 4 \\
8
x_{1} &amp; - &amp; 2 \, x_{2} &amp; + &amp; 4 \, x_{3} &amp; - &amp; 3 \, x_{4} &amp; = &amp; 3 \\
9
2 \, x_{1} &amp; - &amp; 4 \, x_{2} &amp; + &amp; 8 \, x_{3} &amp; - &amp; 6 \, x_{4} &amp; = &amp; 6 \\
10
\end{matrix}</me></p>
11
</statement>
12
<answer>
13
<me>\mathrm{RREF} \left[\begin{array}{cccc|c}
14
1 &amp; -3 &amp; 7 &amp; -4 &amp; 4 \\
15
1 &amp; -2 &amp; 4 &amp; -3 &amp; 3 \\
16
2 &amp; -4 &amp; 8 &amp; -6 &amp; 6
17
\end{array}\right] = \left[\begin{array}{cccc|c}
18
1 &amp; 0 &amp; -2 &amp; -1 &amp; 1 \\
19
0 &amp; 1 &amp; -3 &amp; 1 &amp; -1 \\
20
0 &amp; 0 &amp; 0 &amp; 0 &amp; 0
21
\end{array}\right] </me>
22
<p>The solution set is <m> \left\{ \left[\begin{array}{c}
23
2 \, a + b + 1 \\
24
3 \, a - b - 1 \\
25
a \\
26
b
27
\end{array}\right] \middle|\,a\text{\texttt{,}}b\in\mathbb{R}\right\} </m>.</p>
28
</answer>
29
</exercise>
30
31
32