Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23127 views
ubuntu2004
1
2
\begin{exercise}{E3}{Solving linear systems}{0010}
3
\begin{exerciseStatement}
4
5
Show how to find the solution set for the following vector equation \[ 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] .\]
26
27
\end{exerciseStatement}
28
\begin{exerciseAnswer}\[\mathrm{RREF} \left[\begin{array}{ccc|c}
29
1 & 6 & 5 & -7 \\
30
0 & 1 & 2 & -1 \\
31
1 & -1 & -4 & 0 \\
32
0 & 2 & 2 & -2
33
\end{array}\right] = \left[\begin{array}{ccc|c}
34
1 & 0 & 0 & -1 \\
35
0 & 1 & 0 & -1 \\
36
0 & 0 & 1 & 0 \\
37
0 & 0 & 0 & 0
38
\end{array}\right] \]
39
40
The solution set is \( \left\{ \left[\begin{array}{c}
41
-1 \\
42
-1 \\
43
0
44
\end{array}\right] \right\} \).
45
46
\end{exerciseAnswer}
47
\end{exercise}
48
49
50