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