Use to reflect over the u-axis. Identify the transformed parallelogram.

So we have a matrix T that defines a transformation, more specifically a reflection over the y-axis:
[tex]T=\begin{bmatrix}{-1} & 0 \\ 0 & 1\end{bmatrix}[/tex]And we need to use to reflect:
[tex]A=\begin{bmatrix}{3} & {4} \\ {-4} & {1}\end{bmatrix}[/tex]This basically means that we have to multiply both matrix. The result will be the matrix of the transformed parallelogram A':
[tex]A^{\prime}=T\cdot A=\begin{bmatrix}{-1} & 0 \\ 0 & 1\end{bmatrix}\cdot\begin{bmatrix}{3} & {4} \\ {-4} & {1}\end{bmatrix}[/tex]But first let's recal a property of the matrix product. Let's assume we have to multiply to nxn matrix B and C and the result of this multiplication is matrix D. The element in row i and column j of D is given by the product of row i of matrix B and column j of matrix C:
[tex]d_{ij}=\sum ^n_{k\mathop=1}b_{ik}c_{kj}[/tex]If we apply this to A' we have that the element on the first row and first column is given by multiplying the first row of T with the first column of A:
[tex]A^{\prime}_{11}=(-1,0)\cdot(3,-4)=-1\cdot3-0\cdot4=-3[/tex]Then the element in the first row and second column is given by the product between the first row of T and the second column of A:
[tex]A^{\prime}_{12}=(-1,0)\cdot(4,1)=-1\cdot4+0\cdot1=-4[/tex]The element in the second row and first column is then:
[tex]A^{\prime}_{21}=(0,1)\cdot(3,-4)=0\cdot3-1\cdot4=-4[/tex]And finally the element in the second row and second column:
[tex]A^{\prime}_{22}=(0,1)\cdot(4,1)=0\cdot4+1\cdot1=1[/tex]Then the matrix we are looking for is:
[tex]\begin{bmatrix}{-3} & {-4} \\ {-4} & {1}\end{bmatrix}[/tex]Then the answer is option C.