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