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