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