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