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