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}{0001}
3
\begin{exerciseStatement}
4
5
Consider the vector equation.
6
7
\[ x_{1} \left[\begin{array}{c}
8
1 \\
9
1 \\
10
-1 \\
11
0
12
\end{array}\right] + x_{2} \left[\begin{array}{c}
13
-3 \\
14
-3 \\
15
3 \\
16
0
17
\end{array}\right] + x_{3} \left[\begin{array}{c}
18
-4 \\
19
-3 \\
20
3 \\
21
-2
22
\end{array}\right] = \left[\begin{array}{c}
23
6 \\
24
4 \\
25
-4 \\
26
4
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
x_{1} & - & 3 \, x_{2} & - & 4 \, x_{3} & = & 6 \\
40
x_{1} & - & 3 \, x_{2} & - & 3 \, x_{3} & = & 4 \\
41
-x_{1} & + & 3 \, x_{2} & + & 3 \, x_{3} & = & -4 \\
42
& & & & 2 \, x_{3} & = & 4 \\
43
\end{matrix}\]
44
\item \[ \left[\begin{array}{ccc|c}
45
1 & -3 & -4 & 6 \\
46
1 & -3 & -3 & 4 \\
47
-1 & 3 & 3 & -4 \\
48
0 & 0 & -2 & 4
49
\end{array}\right] \]
50
\end{enumerate}
51
52
\end{exerciseAnswer}
53
\end{exercise}
54
55
56