Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
3776 views
ubuntu2004
1
<exercise checkit-seed="0003" checkit-slug="Demo3" checkit-title="Matrix Example">
2
<statement>
3
<p>Consider the following system of equations:</p>
4
<me>\begin{matrix}
5
x &amp; - &amp; y &amp; + &amp; 4 \, z &amp; = &amp; 4 \\
6
2 \, x &amp; - &amp; y &amp; + &amp; 4 \, z &amp; = &amp; 7 \\
7
&amp; - &amp; y &amp; + &amp; 5 \, z &amp; = &amp; 1 \\
8
&amp; &amp; &amp; - &amp; 2 \, z &amp; = &amp; 0 \\
9
\end{matrix}</me>
10
<p>Write an augmented matrix corresponding to this system.</p>
11
</statement>
12
<answer>
13
<me>\left(\begin{array}{rrr|r}
14
1 &amp; -1 &amp; 4 &amp; 4 \\
15
2 &amp; -1 &amp; 4 &amp; 7 \\
16
0 &amp; -1 &amp; 5 &amp; 1 \\
17
0 &amp; 0 &amp; -2 &amp; 0
18
\end{array}\right)</me>
19
</answer>
20
</exercise>
21
22