So we have a matrix T that defines a transformation, more specifically a reflection over the y-axis:
And we need to use to reflect:
This basically means that we have to multiply both matrix. The result will be the matrix of the transformed parallelogram A':
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:
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:
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:
The element in the second row and first column is then:
And finally the element in the second row and second column:
Then the matrix we are looking for is:
Then the answer is option C.