Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23129 views
ubuntu2004
1
2
\begin{exercise}{E1}{Linear systems, vector equations, and augmented matrices}{0007}
3
\begin{exerciseStatement}
4
5
Consider the augmented matrix
6
7
\[ \left[\begin{array}{ccc|c}
8
4 & 2 & 0 & -6 \\
9
1 & 2 & -5 & 0 \\
10
5 & 4 & -6 & -6 \\
11
-3 & -1 & -2 & 5
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
4 \, x & + & 2 \, y & & & = & -6 \\
25
x & + & 2 \, y & - & 5 \, z & = & 0 \\
26
5 \, x & + & 4 \, y & - & 6 \, z & = & -6 \\
27
-3 \, x & - & y & - & 2 \, z & = & 5 \\
28
\end{matrix}\]
29
\item \[ x_{1} \left[\begin{array}{c}
30
4 \\
31
1 \\
32
5 \\
33
-3
34
\end{array}\right] + x_{2} \left[\begin{array}{c}
35
2 \\
36
2 \\
37
4 \\
38
-1
39
\end{array}\right] + x_{3} \left[\begin{array}{c}
40
0 \\
41
-5 \\
42
-6 \\
43
-2
44
\end{array}\right] = \left[\begin{array}{c}
45
-6 \\
46
0 \\
47
-6 \\
48
5
49
\end{array}\right] \]
50
\end{enumerate}
51
52
\end{exerciseAnswer}
53
\end{exercise}
54
55
56