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