Fix matrix example
This commit is contained in:
parent
3bb7d660af
commit
c830efc7f2
|
@ -590,33 +590,33 @@ makes a mistake when it reports that $AB=C$.
|
||||||
For example,
|
For example,
|
||||||
\[
|
\[
|
||||||
\begin{bmatrix}
|
\begin{bmatrix}
|
||||||
2 & 4 \\
|
6 & 8 \\
|
||||||
1 & 6 \\
|
1 & 3 \\
|
||||||
\end{bmatrix}
|
\end{bmatrix}
|
||||||
\neq
|
\neq
|
||||||
\begin{bmatrix}
|
\begin{bmatrix}
|
||||||
0 & 5 \\
|
8 & 7 \\
|
||||||
7 & 4 \\
|
3 & 2 \\
|
||||||
\end{bmatrix},
|
\end{bmatrix},
|
||||||
\]
|
\]
|
||||||
but
|
but
|
||||||
\[
|
\[
|
||||||
\begin{bmatrix}
|
\begin{bmatrix}
|
||||||
2 & 4 \\
|
6 & 8 \\
|
||||||
1 & 6 \\
|
1 & 3 \\
|
||||||
\end{bmatrix}
|
\end{bmatrix}
|
||||||
\begin{bmatrix}
|
\begin{bmatrix}
|
||||||
1 \\
|
|
||||||
3 \\
|
3 \\
|
||||||
|
6 \\
|
||||||
\end{bmatrix}
|
\end{bmatrix}
|
||||||
=
|
=
|
||||||
\begin{bmatrix}
|
\begin{bmatrix}
|
||||||
0 & 5 \\
|
8 & 7 \\
|
||||||
7 & 4 \\
|
3 & 2 \\
|
||||||
\end{bmatrix}
|
\end{bmatrix}
|
||||||
\begin{bmatrix}
|
\begin{bmatrix}
|
||||||
1 \\
|
|
||||||
3 \\
|
3 \\
|
||||||
|
6 \\
|
||||||
\end{bmatrix}.
|
\end{bmatrix}.
|
||||||
\]
|
\]
|
||||||
However, in practice, the probability that the
|
However, in practice, the probability that the
|
||||||
|
|
Loading…
Reference in New Issue