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}{0008}
3
\begin{exerciseStatement}
4
5
Consider the vector equation.
6
7
\[ x_{1} \left[\begin{array}{c}
8
0 \\
9
-1 \\
10
-1 \\
11
-4
12
\end{array}\right] + x_{2} \left[\begin{array}{c}
13
-4 \\
14
2 \\
15
-3 \\
16
8
17
\end{array}\right] + x_{3} \left[\begin{array}{c}
18
4 \\
19
-2 \\
20
3 \\
21
-8
22
\end{array}\right] = \left[\begin{array}{c}
23
8 \\
24
-2 \\
25
8 \\
26
-8
27
\end{array}\right] \]
28
29
\begin{enumerate}[(a)]
30
\item Write a system of scalar equations corresponding to this vector equation.
31
\item Write an augmented matrix corresponding to this vector equation.
32
\end{enumerate}
33
34
\end{exerciseStatement}
35
\begin{exerciseAnswer}
36
37
\begin{enumerate}[(a)]
38
\item \[\begin{matrix}
39
& & 4 \, x_{2} & + & 4 \, x_{3} & = & 8 \\
40
-x_{1} & + & 2 \, x_{2} & - & 2 \, x_{3} & = & -2 \\
41
-x_{1} & - & 3 \, x_{2} & + & 3 \, x_{3} & = & 8 \\
42
-4 \, x_{1} & + & 8 \, x_{2} & - & 8 \, x_{3} & = & -8 \\
43
\end{matrix}\]
44
\item \[ \left[\begin{array}{ccc|c}
45
0 & -4 & 4 & 8 \\
46
-1 & 2 & -2 & -2 \\
47
-1 & -3 & 3 & 8 \\
48
-4 & 8 & -8 & -8
49
\end{array}\right] \]
50
\end{enumerate}
51
52
\end{exerciseAnswer}
53
\end{exercise}
54
55
56