Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
3776 views
ubuntu2004
1
<exercise checkit-seed="0007" 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; 7 \\
6
x &amp; &amp; &amp; + &amp; 3 \, z &amp; = &amp; 7 \\
7
-x &amp; - &amp; 3 \, y &amp; + &amp; z &amp; = &amp; -5 \\
8
2 \, x &amp; - &amp; y &amp; + &amp; 3 \, z &amp; = &amp; 6 \\
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; 7 \\
15
1 &amp; 0 &amp; 3 &amp; 7 \\
16
-1 &amp; -3 &amp; 1 &amp; -5 \\
17
2 &amp; -1 &amp; 3 &amp; 6
18
\end{array}\right)</me>
19
</answer>
20
</exercise>
21
22