Concept:
Matrix multiplication involves the dot product of rows from the first matrix and columns from the second. For the resulting vector, each entry is the sum of the products of corresponding elements. Scalar multiplication requires multiplying every element in the matrix by the given constant.
Step 1: Performing the initial matrix-vector multiplication.
We multiply the \( 2 \times 3 \) matrix by the \( 3 \times 1 \) vector:
\[
\text{Product}_1 = \begin{pmatrix} (7 \times 2) + (1 \times 3) + (5 \times 1) \\ (8 \times 2) + (0 \times 3) + (0 \times 1) \end{pmatrix}
\]
Simplifying the arithmetic for each row:
\[
\text{Row 1:} \quad 14 + 3 + 5 = 22
\]
\[
\text{Row 2:} \quad 16 + 0 + 0 = 16
\]
So, the first part of the expression results in the vector \( \begin{pmatrix} 22 16 \end{pmatrix} \).
Step 2: Applying scalar multiplication and vector addition.
Next, calculate the scalar product for the second term:
\[
5 \begin{pmatrix} 1 0 \end{pmatrix} = \begin{pmatrix} 5 \times 1 \\ 5 \times 0 \end{pmatrix} = \begin{pmatrix} 5 \\ 0 \end{pmatrix}
\]
Finally, add the two vectors together element-wise:
\[
\text{Result} = \begin{pmatrix} 22 \\ 16 \end{pmatrix} + \begin{pmatrix} 5 \\ 0 \end{pmatrix} = \begin{pmatrix} 22 + 5 16 + 0 \end{pmatrix} = \begin{pmatrix} 27 \\ 16 \end{pmatrix}
\]