We are given the matrix:
\[
5 \times \begin{pmatrix}
5 & 7
6 & 8
\end{pmatrix}
\]
To multiply a scalar (5) with a matrix, simply multiply each element of the matrix by 5:
\[
5 \times \begin{pmatrix}
5 & 7
6 & 8
\end{pmatrix}
= \begin{pmatrix}
5 \times 5 & 5 \times 7
5 \times 6 & 5 \times 8
\end{pmatrix}
= \begin{pmatrix}
25 & 35
30 & 40
\end{pmatrix}
\]
Thus, the result is \(\begin{pmatrix} 25 & 35
30 & 40 \end{pmatrix}\).