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}{0002}
3
\begin{exerciseStatement}
4
5
Consider the augmented matrix
6
7
\[ \left[\begin{array}{ccc|c}
8
4 & 1 & 7 & 6 \\
9
-5 & -4 & -6 & -2 \\
10
-1 & 1 & -3 & -4 \\
11
-3 & 0 & -6 & -6
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_{1} & + & x_{2} & + & 7 \, x_{3} & = & 6 \\
25
-5 \, x_{1} & - & 4 \, x_{2} & - & 6 \, x_{3} & = & -2 \\
26
-x_{1} & + & x_{2} & - & 3 \, x_{3} & = & -4 \\
27
-3 \, x_{1} & & & - & 6 \, x_{3} & = & -6 \\
28
\end{matrix}\]
29
\item \[ x_{1} \left[\begin{array}{c}
30
4 \\
31
-5 \\
32
-1 \\
33
-3
34
\end{array}\right] + x_{2} \left[\begin{array}{c}
35
1 \\
36
-4 \\
37
1 \\
38
0
39
\end{array}\right] + x_{3} \left[\begin{array}{c}
40
7 \\
41
-6 \\
42
-3 \\
43
-6
44
\end{array}\right] = \left[\begin{array}{c}
45
6 \\
46
-2 \\
47
-4 \\
48
-6
49
\end{array}\right] \]
50
\end{enumerate}
51
52
\end{exerciseAnswer}
53
\end{exercise}
54
55
56