We are provided with a matrix and it's corresponding determine:
This Matrix, let's call it A, has a determinant of 4.
\begin{bmatrix} a & b & c \\ d & e & f \\ g & h & i \\ \end{bmatrix}
We want to find the determinant of this Matrix, B, using A.
\begin{bmatrix} 2c & b & a \\ 2f & e & d \\ 2i & h & g \\ \end{bmatrix}
Now I recognize that B is actually Matrix A, except Column 1 and 3 are swapped and Column 1 in B is multiplied by 2. However, I'm not sure how we can use this information to find it's determinant.