Skip to content

Commit 1f06dc3

Browse files
committed
Updates chapters/computational_mathematics/matrix_methods/gaussian_elimination.md
Auto commit by GitBook Editor
1 parent 5e6ebd4 commit 1f06dc3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

chapters/computational_mathematics/matrix_methods/gaussian_elimination.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ Now, Row Eschelon form is nice, but wouldn't it be even better if our system of
9191

9292
$$
9393
\begin{align}
94-
11x &= 156 \\
95-
11y &= 58 \\
94+
11x &= 18 \\
95+
11y &= -14 \\
9696
11z &= 18
9797
\end{align}
9898
$$
@@ -104,8 +104,8 @@ Then we would know exactly what $$x$$, $$y$$, and $$z$$ are without any fuss! In
104104
$$
105105
\left[
106106
\begin{array}{ccc|c}
107-
11 & 0 & 0 & 156 \\
108-
0 & 11 & 0 & 116 \\
107+
11 & 0 & 0 & 18 \\
108+
0 & 11 & 0 & -14 \\
109109
0 & 0 & 11 & 18
110110
\end{array}
111111
\right]
@@ -156,8 +156,8 @@ $$\left[
156156
\end{array}
157157
\right]$$ $$\rightarrow$$ $$\left[
158158
\begin{array}{ccc|c}
159-
11 & 0 & 0 & 156 \\
160-
0 & 11 & 0 & 116 \\
159+
11 & 0 & 0 & 18 \\
160+
0 & 11 & 0 & -14 \\
161161
0 & 0 & 11 & 18
162162
\end{array}
163163
\right]$$

0 commit comments

Comments
 (0)