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