Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23128 views
ubuntu2004
1
2
\begin{exercise}{E1}{Linear systems, vector equations, and augmented matrices}{0003}
3
\begin{exerciseStatement}
4
5
Consider the augmented matrix
6
7
\[ \left[\begin{array}{ccc|c}
8
1 & -1 & -1 & -6 \\
9
0 & 1 & -3 & 4 \\
10
0 & 0 & 0 & 1 \\
11
0 & 2 & -6 & 7
12
\end{array}\right] \]
13
14
\begin{enumerate}[(a)]
15
\item Write a system of scalar equations corresponding to this augmented matrix.
16
\item Write a vector equation corresponding to this augmented matrix.
17
\end{enumerate}
18
19
\end{exerciseStatement}
20
\begin{exerciseAnswer}
21
22
\begin{enumerate}[(a)]
23
\item \[\begin{matrix}
24
x_{1} & - & x_{2} & - & x_{3} & = & -6 \\
25
& & x_{2} & - & 3 \, x_{3} & = & 4 \\
26
& & & & 0 & = & 1 \\
27
& & 2 \, x_{2} & - & 6 \, x_{3} & = & 7 \\
28
\end{matrix}\]
29
\item \[ x_{1} \left[\begin{array}{c}
30
1 \\
31
0 \\
32
0 \\
33
0
34
\end{array}\right] + x_{2} \left[\begin{array}{c}
35
-1 \\
36
1 \\
37
0 \\
38
2
39
\end{array}\right] + x_{3} \left[\begin{array}{c}
40
-1 \\
41
-3 \\
42
0 \\
43
-6
44
\end{array}\right] = \left[\begin{array}{c}
45
-6 \\
46
4 \\
47
1 \\
48
7
49
\end{array}\right] \]
50
\end{enumerate}
51
52
\end{exerciseAnswer}
53
\end{exercise}
54
55
56