We are given two matrices and are asked to multiply them:
\[
\left[
\begin{matrix}
5 & -1 \\
6 & -7
\end{matrix}
\right] \times
\left[
\begin{matrix}
2 & 1 \\
3 & 4
\end{matrix}
\right]
\]
We multiply these matrices by computing the dot product of rows from the first matrix with columns from the second matrix.
For the first element of the product matrix:
\[
5 \times 2 + (-1) \times 3 = 10 - 3 = 7
\]
For the second element:
\[
5 \times 1 + (-1) \times 4 = 5 - 4 = 1
\]
For the third element:
\[
6 \times 2 + (-7) \times 3 = 12 - 21 = -9
\]
For the fourth element:
\[
6 \times 1 + (-7) \times 4 = 6 - 28 = -22
\]
Thus, the final product matrix is:
\[
\left[
\begin{matrix}
7 & 11 \\
33 & 34
\end{matrix}
\right]
\]